-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfrmMiniCut2d.frm
More file actions
10046 lines (9679 loc) · 417 KB
/
frmMiniCut2d.frm
File metadata and controls
10046 lines (9679 loc) · 417 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
VERSION 5.00
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.1#0"; "MSCOMCTL.OCX"
Object = "{BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0"; "TABCTL32.OCX"
Begin VB.Form frmMiniCut2d
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "MiniCut2d Software"
ClientHeight = 10095
ClientLeft = 120
ClientTop = 510
ClientWidth = 15240
Icon = "frmMiniCut2d.frx":0000
LinkTopic = "Form1"
ScaleHeight = 673
ScaleMode = 3 'Pixel
ScaleWidth = 1016
StartUpPosition = 1 'CenterOwner
Begin VB.PictureBox pctZoomInfo
Appearance = 0 'Flat
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 300
Left = 14835
Picture = "frmMiniCut2d.frx":058A
ScaleHeight = 300
ScaleWidth = 300
TabIndex = 151
Top = 6930
Width = 300
End
Begin MSComctlLib.Slider sliderZoom
Height = 1275
Left = 12555
TabIndex = 150
Top = 5475
Width = 675
_ExtentX = 1191
_ExtentY = 2249
_Version = 393216
Orientation = 1
LargeChange = 1
Min = -1
Max = 1
End
Begin VB.PictureBox pctRepriseDecoupe
Height = 9075
Left = 10155
ScaleHeight = 9015
ScaleWidth = 3975
TabIndex = 83
TabStop = 0 'False
Top = 585
Width = 4035
Begin VB.Frame frameAnnulationReprise
Caption = "Annuler"
ForeColor = &H00004000&
Height = 1065
Left = 180
TabIndex = 100
Top = 7920
Width = 3645
Begin VB.CommandButton cmdAnnulerReprise
BackColor = &H00C0FFC0&
Height = 585
Left = 150
Picture = "frmMiniCut2d.frx":0BB4
Style = 1 'Graphical
TabIndex = 101
TabStop = 0 'False
ToolTipText = "Annuler tout"
Top = 300
Width = 3315
End
End
Begin VB.Frame frameRetourOrigine
Caption = "Retourner à l'origine"
ForeColor = &H00004000&
Height = 2445
Left = 180
TabIndex = 93
Top = 3705
Width = 3645
Begin VB.CommandButton cmdLancerRetourApresStop
BackColor = &H0080FF80&
Height = 615
Left = 165
Picture = "frmMiniCut2d.frx":1656
Style = 1 'Graphical
TabIndex = 98
TabStop = 0 'False
ToolTipText = "Lancer le retour"
Top = 1635
Width = 3315
End
Begin VB.Frame frameTrajetRetour
Caption = "Trajet"
ForeColor = &H00004000&
Height = 1125
Left = 120
TabIndex = 94
Top = 345
Width = 3405
Begin VB.OptionButton optTrajetRetour
BackColor = &H00C0FFC0&
Height = 585
Index = 2
Left = 2370
Picture = "frmMiniCut2d.frx":26BC
Style = 1 'Graphical
TabIndex = 97
TabStop = 0 'False
ToolTipText = "Par la haut"
Top = 330
Width = 855
End
Begin VB.OptionButton optTrajetRetour
BackColor = &H00C0FFC0&
Height = 585
Index = 1
Left = 1280
Picture = "frmMiniCut2d.frx":2EA2
Style = 1 'Graphical
TabIndex = 96
TabStop = 0 'False
ToolTipText = "Par la gauche"
Top = 330
Width = 855
End
Begin VB.OptionButton optTrajetRetour
BackColor = &H00C0FFC0&
Height = 585
Index = 0
Left = 180
Picture = "frmMiniCut2d.frx":3688
Style = 1 'Graphical
TabIndex = 95
TabStop = 0 'False
ToolTipText = "En diagonale"
Top = 330
Value = -1 'True
Width = 855
End
End
Begin VB.CommandButton cmdStopRetourApresReprise
BackColor = &H0080FF80&
Height = 585
Left = 165
Picture = "frmMiniCut2d.frx":3E6E
Style = 1 'Graphical
TabIndex = 99
TabStop = 0 'False
ToolTipText = "Arrêt d'urgence!"
Top = 2220
Width = 3315
End
End
Begin VB.Frame frameModifierLaChauffe
Caption = "Modifier la chauffe"
ForeColor = &H00004000&
Height = 855
Left = 180
TabIndex = 90
Top = 2610
Width = 3645
Begin VB.PictureBox imgChauffe2
Appearance = 0 'Flat
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 195
Left = 210
Picture = "frmMiniCut2d.frx":48A0
ScaleHeight = 195
ScaleWidth = 375
TabIndex = 126
Top = 375
Width = 375
End
Begin VB.HScrollBar hscChauffeStop
Height = 255
LargeChange = 10
Left = 735
Max = 100
Min = 1
TabIndex = 91
TabStop = 0 'False
Top = 360
Value = 1
Width = 1845
End
Begin VB.Label lblChauffeStop
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackColor = &H00C0FFC0&
Caption = "XXX %"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 195
Left = 2760
TabIndex = 92
Top = 390
Width = 570
End
End
Begin VB.Frame frameReprendre
Caption = "Terminer la découpe"
ForeColor = &H00004000&
Height = 1170
Left = 180
TabIndex = 88
Top = 6465
Width = 3645
Begin VB.CommandButton cmdRepriseDecoupe
BackColor = &H0080FF80&
Height = 705
Left = 150
Picture = "frmMiniCut2d.frx":4E3A
Style = 1 'Graphical
TabIndex = 89
TabStop = 0 'False
ToolTipText = "Terminer la découpe"
Top = 270
Width = 3315
End
End
Begin VB.Frame frameInformationStop
Caption = "Information"
ForeColor = &H00004000&
Height = 1845
Left = 180
TabIndex = 84
Top = 480
Width = 3645
Begin MSComctlLib.ProgressBar progrbarRetour
Height = 255
Left = 90
TabIndex = 119
Top = 1470
Width = 3465
_ExtentX = 6112
_ExtentY = 450
_Version = 393216
BorderStyle = 1
Appearance = 0
End
Begin VB.Label lblNumSegmentStop
Alignment = 2 'Center
Appearance = 0 'Flat
AutoSize = -1 'True
BackColor = &H00004000&
BorderStyle = 1 'Fixed Single
Caption = "Arrêt sur le segment n° :"
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 255
Left = 780
TabIndex = 86
Top = 1110
Width = 2025
End
Begin VB.Label lblArretParBoutonStop
Alignment = 2 'Center
Caption = "Vous venez de demander l'arrêt de la découpe en appuyant/cliquant sur le bouton STOP"
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 765
Left = 60
TabIndex = 85
Top = 300
Width = 3465
End
End
Begin VB.Label lblStopReprise
Alignment = 2 'Center
Appearance = 0 'Flat
AutoSize = -1 'True
BackColor = &H00C0FFC0&
BorderStyle = 1 'Fixed Single
Caption = " Stop / Reprise "
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 225
Left = 1155
TabIndex = 87
Top = 120
Width = 1545
End
End
Begin VB.PictureBox pctValidationDecoupe
Height = 9075
Left = 6990
ScaleHeight = 9015
ScaleWidth = 3975
TabIndex = 68
TabStop = 0 'False
Top = 1065
Width = 4035
Begin VB.Frame frmDecalageExpert
Caption = "Décaler le fil (mode Expert)"
Height = 1095
Left = 180
TabIndex = 173
Top = 585
Width = 3645
Begin VB.OptionButton optDecalageExpert
BackColor = &H00004000&
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 400
Index = 10
Left = 3100
Style = 1 'Graphical
TabIndex = 184
ToolTipText = "+0.7mm (S=1.4mm)"
Top = 300
Width = 320
End
Begin VB.OptionButton optDecalageExpert
BackColor = &H00008000&
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 400
Index = 9
Left = 2770
Style = 1 'Graphical
TabIndex = 183
ToolTipText = "+0.65mm (S=1.3mm)"
Top = 300
Width = 300
End
Begin VB.OptionButton optDecalageExpert
BackColor = &H0000C000&
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 400
Index = 8
Left = 2450
Style = 1 'Graphical
TabIndex = 182
ToolTipText = "+0.6mm (S=1.2mm)"
Top = 300
Width = 280
End
Begin VB.OptionButton optDecalageExpert
BackColor = &H0000FF00&
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 400
Index = 7
Left = 2160
Style = 1 'Graphical
TabIndex = 181
ToolTipText = "+0.55mm (S=1.1mm)"
Top = 300
Width = 260
End
Begin VB.OptionButton optDecalageExpert
BackColor = &H0080FF80&
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 400
Index = 6
Left = 1890
Style = 1 'Graphical
TabIndex = 180
ToolTipText = "+0.5mm (S=1mm)"
Top = 300
Width = 240
End
Begin VB.OptionButton optDecalageExpert
BackColor = &H00004000&
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 400
Index = 5
Left = 100
Style = 1 'Graphical
TabIndex = 179
ToolTipText = "-0.7mm (S=1.4mm)"
Top = 300
Width = 320
End
Begin VB.OptionButton optDecalageExpert
BackColor = &H00008000&
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 400
Index = 4
Left = 440
Style = 1 'Graphical
TabIndex = 178
ToolTipText = "-0.65mm (S=1.3mm)"
Top = 300
Width = 300
End
Begin VB.OptionButton optDecalageExpert
BackColor = &H0000C000&
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 400
Index = 3
Left = 770
Style = 1 'Graphical
TabIndex = 177
ToolTipText = "-0.6mm (S=1.2mm)"
Top = 300
Width = 280
End
Begin VB.OptionButton optDecalageExpert
BackColor = &H0000FF00&
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 400
Index = 2
Left = 1080
Style = 1 'Graphical
TabIndex = 176
ToolTipText = "-0.55mm (S=1.1mm)"
Top = 300
Width = 260
End
Begin VB.OptionButton optDecalageExpert
BackColor = &H0080FF80&
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 400
Index = 1
Left = 1360
Style = 1 'Graphical
TabIndex = 175
ToolTipText = "-0.5mm (S=1mm)"
Top = 300
Width = 240
End
Begin VB.OptionButton optDecalageExpert
BackColor = &H00C0FFC0&
Caption = "0"
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 400
Index = 0
Left = 1640
Style = 1 'Graphical
TabIndex = 174
ToolTipText = "0mm"
Top = 300
Value = -1 'True
Width = 220
End
Begin VB.Label lblDecalageExpert
Alignment = 2 'Center
BackColor = &H00C0FFC0&
Caption = "0mm"
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 225
Left = 150
TabIndex = 185
Top = 765
Width = 3240
End
End
Begin VB.Frame frameChauffeEnCoursDecoupe
Caption = "Chauffe"
ForeColor = &H00004000&
Height = 1020
Left = 195
TabIndex = 144
Top = 7755
Width = 3645
Begin VB.OptionButton optChauffePendantDecoupe
BackColor = &H00C0FFC0&
Height = 525
Index = 0
Left = 165
Picture = "frmMiniCut2d.frx":6104
Style = 1 'Graphical
TabIndex = 148
Top = 330
Width = 645
End
Begin VB.OptionButton optChauffePendantDecoupe
BackColor = &H00C0FFC0&
Height = 525
Index = 1
Left = 270
Picture = "frmMiniCut2d.frx":67A6
Style = 1 'Graphical
TabIndex = 149
Top = 420
Value = -1 'True
Width = 645
End
Begin VB.HScrollBar hscChauffePendantDecoupe
Height = 255
LargeChange = 10
Left = 1020
Max = 100
Min = 1
TabIndex = 146
TabStop = 0 'False
Top = 495
Value = 1
Width = 1635
End
Begin VB.PictureBox imgChauffe3
Appearance = 0 'Flat
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 195
Left = 2925
Picture = "frmMiniCut2d.frx":6EAC
ScaleHeight = 195
ScaleWidth = 375
TabIndex = 145
Top = 225
Width = 375
End
Begin VB.Label lblChauffePendantDecoupe
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackColor = &H00C0FFC0&
Caption = "XXX %"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 195
Left = 2865
TabIndex = 147
Top = 540
Width = 570
End
End
Begin VB.Frame frameDecalage
Caption = "Décaler le fil"
ForeColor = &H00004000&
Height = 1095
Left = 180
TabIndex = 103
Top = 1125
Width = 3645
Begin VB.OptionButton optDecalage
BackColor = &H00C0FFC0&
Height = 585
Index = 3
Left = 2475
Picture = "frmMiniCut2d.frx":7446
Style = 1 'Graphical
TabIndex = 106
TabStop = 0 'False
ToolTipText = "0.5"
Top = 315
Width = 915
End
Begin VB.OptionButton optDecalage
BackColor = &H00C0FFC0&
Height = 585
Index = 2
Left = 1335
Picture = "frmMiniCut2d.frx":7D10
Style = 1 'Graphical
TabIndex = 105
TabStop = 0 'False
ToolTipText = "0mm"
Top = 315
Value = -1 'True
Width = 915
End
Begin VB.OptionButton optDecalage
BackColor = &H00C0FFC0&
Height = 585
Index = 1
Left = 195
Picture = "frmMiniCut2d.frx":85DA
Style = 1 'Graphical
TabIndex = 104
TabStop = 0 'False
ToolTipText = "-0.5mm"
Top = 315
Width = 915
End
End
Begin VB.Frame frameAnnulationStop
Caption = "Annulation - Stop/Reprise"
ForeColor = &H00004000&
Height = 1065
Left = 195
TabIndex = 80
Top = 6405
Width = 3645
Begin VB.CommandButton cmdAnnulerDecoupe
BackColor = &H00C0FFC0&
Height = 585
Left = 150
Picture = "frmMiniCut2d.frx":8EA4
Style = 1 'Graphical
TabIndex = 82
TabStop = 0 'False
ToolTipText = "Annuler la découpe"
Top = 300
Width = 3315
End
Begin VB.CommandButton cmdSTOP
BackColor = &H0080FF80&
Height = 585
Left = 150
Picture = "frmMiniCut2d.frx":9946
Style = 1 'Graphical
TabIndex = 81
TabStop = 0 'False
ToolTipText = "Arrêt d'urgence!"
Top = 810
Width = 3315
End
End
Begin VB.Frame frameAction
Caption = "Lancer la découpe"
ForeColor = &H00004000&
Height = 1335
Left = 180
TabIndex = 74
Top = 4770
Width = 3645
Begin VB.CommandButton cmdFaireOrigineAvantDecoupe
BackColor = &H0080FF80&
Height = 810
Left = 150
Picture = "frmMiniCut2d.frx":A378
Style = 1 'Graphical
TabIndex = 75
TabStop = 0 'False
ToolTipText = "Lancer la découpe"
Top = 300
Width = 3315
End
End
Begin VB.Frame frameInformation
Caption = "Information"
ForeColor = &H00004000&
Height = 2040
Left = 165
TabIndex = 70
Top = 2430
Width = 3645
Begin MSComctlLib.ProgressBar progrbarChauffe
Height = 255
Left = 90
TabIndex = 73
Top = 1635
Width = 3465
_ExtentX = 6112
_ExtentY = 450
_Version = 393216
BorderStyle = 1
Appearance = 0
End
Begin VB.Label lblAvertissementDecoupe
Alignment = 2 'Center
Appearance = 0 'Flat
AutoSize = -1 'True
BackColor = &H00004000&
BorderStyle = 1 'Fixed Single
Caption = "Avertissement Découpe"
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 255
Left = 765
TabIndex = 72
Top = 1245
Width = 2025
End
Begin VB.Label lblDureeDecoupe
Alignment = 2 'Center
AutoSize = -1 'True
Caption = "Durée : xx min. yy s."
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 1020
TabIndex = 71
Top = 330
Width = 1605
End
End
Begin VB.Label lblCadreDecoupe
Alignment = 2 'Center
Appearance = 0 'Flat
AutoSize = -1 'True
BackColor = &H00C0FFC0&
BorderStyle = 1 'Fixed Single
Caption = " Découpe "
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 255
Left = 1230
TabIndex = 69
Top = 195
Width = 1575
End
End
Begin VB.CheckBox chkZoomDecoupe
Height = 495
Left = 14730
Picture = "frmMiniCut2d.frx":BE42
Style = 1 'Graphical
TabIndex = 143
TabStop = 0 'False
ToolTipText = "Zoom Bloc"
Top = 45
Width = 495
End
Begin VB.CommandButton cmdMiroirFichierSource
Height = 495
Left = 14730
Picture = "frmMiniCut2d.frx":C46C
Style = 1 'Graphical
TabIndex = 142
Top = 4290
Width = 495
End
Begin VB.CommandButton cmdInverserSensSequ
Height = 495
Left = 14730
Picture = "frmMiniCut2d.frx":CA96
Style = 1 'Graphical
TabIndex = 141
Top = 3795
Width = 495
End
Begin VB.CommandButton cmdAfficherSensSequ
Height = 495
Left = 14730
Picture = "frmMiniCut2d.frx":D0C0
Style = 1 'Graphical
TabIndex = 140
Top = 3300
Width = 495
End
Begin VB.CommandButton cmdAgrandirRetrecir
Height = 495
Left = 14730
Picture = "frmMiniCut2d.frx":D6EA
Style = 1 'Graphical
TabIndex = 139
TabStop = 0 'False
ToolTipText = "Taille de la fenêtre"
Top = 5865
Width = 495
End
Begin VB.CheckBox chkCouleurProfils
Height = 495
Left = 14730
Picture = "frmMiniCut2d.frx":DDD4
Style = 1 'Graphical
TabIndex = 138
TabStop = 0 'False
ToolTipText = "Alterner la couleur des profils"
Top = 5370
Width = 495
End
Begin VB.CheckBox chkZoomProjet
Height = 495
Left = 14730
Picture = "frmMiniCut2d.frx":E44E
Style = 1 'Graphical
TabIndex = 137
TabStop = 0 'False
ToolTipText = "Zoom Bloc"
Top = 6360
Width = 495
End
Begin VB.CheckBox chkVoirPoints
Height = 495
Left = 14730
Picture = "frmMiniCut2d.frx":EA78
Style = 1 'Graphical
TabIndex = 136
TabStop = 0 'False
ToolTipText = "Afficher les points"
Top = 4875
Width = 495
End
Begin VB.PictureBox pctFil
Height = 9075
Left = 4215
ScaleHeight = 9015
ScaleWidth = 4005
TabIndex = 107
TabStop = 0 'False
Top = 435
Width = 4065
Begin VB.Timer TimerTempoChauffeManu
Enabled = 0 'False
Interval = 1000
Left = 3315
Top = 120
End
Begin VB.Frame frameChauffeFil
Caption = "Faire chauffer"
ForeColor = &H00C00000&
Height = 990
Left = 180
TabIndex = 115
Top = 810
Width = 3645
Begin VB.PictureBox PictureChauffe
Appearance = 0 'Flat
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 195
Left = 780
Picture = "frmMiniCut2d.frx":F0F2
ScaleHeight = 195
ScaleWidth = 375
TabIndex = 155
ToolTipText = "Chauffe"
Top = 285
Width = 375
End
Begin VB.OptionButton optChauffe
BackColor = &H00FFC0C0&
Caption = "ON"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 570
Index = 0
Left = 2700
Picture = "frmMiniCut2d.frx":F68C
Style = 1 'Graphical
TabIndex = 127
ToolTipText = "Faire chauffer"
Top = 300
Width = 660
End
Begin VB.OptionButton optChauffe
BackColor = &H008080FF&
Caption = "OFF"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 570
Index = 1
Left = 2985