-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrmMntArt.frm
3846 lines (3208 loc) · 105 KB
/
FrmMntArt.frm
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 = "{BEEECC20-4D5F-4F8B-BFDC-5D9B6FBDE09D}#1.0#0"; "vsflex8.ocx"
Object = "{0D452EE1-E08F-101A-852E-02608C4D0BB4}#2.0#0"; "FM20.DLL"
Object = "{BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0"; "TABCTL32.OCX"
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "Comdlg32.ocx"
Begin VB.Form frmMntArt
BackColor = &H00C0C0C0&
BorderStyle = 3 'Fixed Dialog
Caption = "Artículos"
ClientHeight = 6915
ClientLeft = 45
ClientTop = 375
ClientWidth = 11025
ClipControls = 0 'False
BeginProperty Font
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
KeyPreview = -1 'True
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 6915
ScaleWidth = 11025
ShowInTaskbar = 0 'False
Begin TabDlg.SSTab Tab1
Height = 3675
Left = 15
TabIndex = 16
TabStop = 0 'False
Top = 450
Width = 10995
_ExtentX = 19394
_ExtentY = 6482
_Version = 393216
Style = 1
TabsPerRow = 4
TabHeight = 520
BackColor = 12632256
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
TabCaption(0) = "Hoja 1"
TabPicture(0) = "FrmMntArt.frx":0000
Tab(0).ControlEnabled= -1 'True
Tab(0).Control(0)= "Label2"
Tab(0).Control(0).Enabled= 0 'False
Tab(0).Control(1)= "Label6"
Tab(0).Control(1).Enabled= 0 'False
Tab(0).Control(2)= "Label7"
Tab(0).Control(2).Enabled= 0 'False
Tab(0).Control(3)= "Label8"
Tab(0).Control(3).Enabled= 0 'False
Tab(0).Control(4)= "Label10"
Tab(0).Control(4).Enabled= 0 'False
Tab(0).Control(5)= "Label11"
Tab(0).Control(5).Enabled= 0 'False
Tab(0).Control(6)= "Label12"
Tab(0).Control(6).Enabled= 0 'False
Tab(0).Control(7)= "Label13"
Tab(0).Control(7).Enabled= 0 'False
Tab(0).Control(8)= "ioTARIFA"
Tab(0).Control(8).Enabled= 0 'False
Tab(0).Control(9)= "ioPRECOM"
Tab(0).Control(9).Enabled= 0 'False
Tab(0).Control(10)= "ioPREVEN"
Tab(0).Control(10).Enabled= 0 'False
Tab(0).Control(11)= "cbSECCION"
Tab(0).Control(11).Enabled= 0 'False
Tab(0).Control(12)= "ioREF"
Tab(0).Control(12).Enabled= 0 'False
Tab(0).Control(13)= "ioABREVIA"
Tab(0).Control(13).Enabled= 0 'False
Tab(0).Control(14)= "cbSUBFAM"
Tab(0).Control(14).Enabled= 0 'False
Tab(0).Control(15)= "cbFAMILIA"
Tab(0).Control(15).Enabled= 0 'False
Tab(0).Control(16)= "ioMODELO"
Tab(0).Control(16).Enabled= 0 'False
Tab(0).Control(17)= "vsModificaciones"
Tab(0).Control(17).Enabled= 0 'False
Tab(0).ControlCount= 18
TabCaption(1) = "Hoja 2"
TabPicture(1) = "FrmMntArt.frx":001C
Tab(1).ControlEnabled= 0 'False
Tab(1).Control(0)= "vsTarifas"
Tab(1).Control(1)= "ioDCTO"
Tab(1).Control(2)= "Label23"
Tab(1).Control(3)= "Label24"
Tab(1).Control(4)= "lblPRECOM"
Tab(1).Control(5)= "lblPrecomFin"
Tab(1).Control(6)= "Label15"
Tab(1).ControlCount= 7
TabCaption(2) = "Hoja 3"
TabPicture(2) = "FrmMntArt.frx":0038
Tab(2).ControlEnabled= 0 'False
Tab(2).Control(0)= "ioSTOCK"
Tab(2).Control(1)= "Label20"
Tab(2).Control(2)= "Label19"
Tab(2).Control(3)= "Label17"
Tab(2).Control(4)= "Label16"
Tab(2).Control(5)= "Label18"
Tab(2).Control(6)= "Label9"
Tab(2).Control(7)= "ioIVACOM"
Tab(2).Control(8)= "ioFOTO"
Tab(2).Control(9)= "ioPEDIR"
Tab(2).Control(10)= "ioSTOCKMAX"
Tab(2).Control(11)= "ioSTOCKMIN"
Tab(2).Control(12)= "lblExisteCom"
Tab(2).Control(13)= "cmComentario"
Tab(2).Control(14)= "Dialogo"
Tab(2).Control(15)= "cbTIPOIVA"
Tab(2).Control(16)= "cbCODPROV"
Tab(2).Control(17)= "cmBorrarFoto"
Tab(2).ControlCount= 18
Begin VSFlex8Ctl.VSFlexGrid vsModificaciones
Height = 2520
Left = 6510
TabIndex = 52
TabStop = 0 'False
Top = 1125
Width = 4455
_cx = 7858
_cy = 4445
Appearance = 1
BorderStyle = 1
Enabled = -1 'True
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
MousePointer = 0
BackColor = -2147483643
ForeColor = -2147483640
BackColorFixed = -2147483633
ForeColorFixed = -2147483630
BackColorSel = -2147483635
ForeColorSel = -2147483634
BackColorBkg = -2147483636
BackColorAlternate= -2147483643
GridColor = -2147483633
GridColorFixed = -2147483632
TreeColor = -2147483632
FloodColor = 192
SheetBorder = -2147483642
FocusRect = 1
HighLight = 1
AllowSelection = -1 'True
AllowBigSelection= -1 'True
AllowUserResizing= 0
SelectionMode = 0
GridLines = 1
GridLinesFixed = 2
GridLineWidth = 1
Rows = 50
Cols = 5
FixedRows = 1
FixedCols = 1
RowHeightMin = 0
RowHeightMax = 0
ColWidthMin = 0
ColWidthMax = 0
ExtendLastCol = 0 'False
FormatString = $"FrmMntArt.frx":0054
ScrollTrack = 0 'False
ScrollBars = 3
ScrollTips = 0 'False
MergeCells = 0
MergeCompare = 0
AutoResize = -1 'True
AutoSizeMode = 0
AutoSearch = 0
AutoSearchDelay = 2
MultiTotals = -1 'True
SubtotalPosition= 1
OutlineBar = 0
OutlineCol = 0
Ellipsis = 0
ExplorerBar = 0
PicturesOver = 0 'False
FillStyle = 0
RightToLeft = 0 'False
PictureType = 0
TabBehavior = 0
OwnerDraw = 0
Editable = 0
ShowComboButton = 1
WordWrap = 0 'False
TextStyle = 0
TextStyleFixed = 0
OleDragMode = 0
OleDropMode = 0
DataMode = 0
VirtualData = -1 'True
DataMember = ""
ComboSearch = 3
AutoSizeMouse = -1 'True
FrozenRows = 0
FrozenCols = 0
AllowUserFreezing= 0
BackColorFrozen = 0
ForeColorFrozen = 0
WallPaperAlignment= 9
AccessibleName = ""
AccessibleDescription= ""
AccessibleValue = ""
AccessibleRole = 24
End
Begin PCGestion.miText ioMODELO
Height = 525
Left = 1350
TabIndex = 5
Top = 2280
Width = 5190
_ExtentX = 9155
_ExtentY = 926
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
dspFormat = ""
Enabled = -1 'True
EsPassword = -1 'True
End
Begin PCGestion.miCombo cbFAMILIA
Height = 540
Left = 1335
TabIndex = 3
Top = 1095
Width = 5175
_ExtentX = 9128
_ExtentY = 953
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin PCGestion.miCombo cbSUBFAM
Height = 495
Left = 1335
TabIndex = 4
Top = 1695
Width = 5175
_ExtentX = 9128
_ExtentY = 873
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin PCGestion.miText ioABREVIA
Height = 525
Left = 4125
TabIndex = 1
Top = 525
Width = 1695
_ExtentX = 2990
_ExtentY = 926
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
dspFormat = ""
Enabled = -1 'True
EsPassword = -1 'True
End
Begin PCGestion.miText ioREF
Height = 525
Left = 1350
TabIndex = 0
Top = 510
Width = 1965
_ExtentX = 3466
_ExtentY = 926
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
dspFormat = ""
Enabled = -1 'True
EsPassword = -1 'True
End
Begin PCGestion.miCombo cbSECCION
Height = 495
Left = 6630
TabIndex = 2
Top = 525
Width = 4320
_ExtentX = 7620
_ExtentY = 873
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin PCGestion.ucGrdBttn cmBorrarFoto
Height = 315
Left = -64365
TabIndex = 53
TabStop = 0 'False
Top = 3300
Width = 270
_ExtentX = 476
_ExtentY = 556
Caption = "X"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Image = "FrmMntArt.frx":00FF
End
Begin PCGestion.miCombo cbCODPROV
Height = 540
Left = -73530
TabIndex = 15
Top = 2340
Width = 5475
_ExtentX = 9657
_ExtentY = 953
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin PCGestion.miCombo cbTIPOIVA
Height = 510
Left = -73545
TabIndex = 13
Top = 1725
Width = 3330
_ExtentX = 5794
_ExtentY = 900
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin VSFlex8Ctl.VSFlexGrid vsTarifas
Height = 2280
Left = -74985
TabIndex = 59
TabStop = 0 'False
Top = 1335
Width = 10905
_cx = 19235
_cy = 4022
Appearance = 1
BorderStyle = 1
Enabled = -1 'True
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
MousePointer = 0
BackColor = -2147483643
ForeColor = -2147483640
BackColorFixed = -2147483633
ForeColorFixed = -2147483630
BackColorSel = -2147483635
ForeColorSel = -2147483634
BackColorBkg = -2147483636
BackColorAlternate= -2147483643
GridColor = -2147483633
GridColorFixed = -2147483632
TreeColor = -2147483632
FloodColor = 192
SheetBorder = -2147483642
FocusRect = 1
HighLight = 1
AllowSelection = -1 'True
AllowBigSelection= -1 'True
AllowUserResizing= 0
SelectionMode = 0
GridLines = 1
GridLinesFixed = 2
GridLineWidth = 1
Rows = 50
Cols = 7
FixedRows = 1
FixedCols = 1
RowHeightMin = 0
RowHeightMax = 0
ColWidthMin = 0
ColWidthMax = 0
ExtendLastCol = 0 'False
FormatString = $"FrmMntArt.frx":011B
ScrollTrack = 0 'False
ScrollBars = 3
ScrollTips = 0 'False
MergeCells = 0
MergeCompare = 0
AutoResize = -1 'True
AutoSizeMode = 0
AutoSearch = 0
AutoSearchDelay = 2
MultiTotals = -1 'True
SubtotalPosition= 1
OutlineBar = 0
OutlineCol = 0
Ellipsis = 0
ExplorerBar = 0
PicturesOver = 0 'False
FillStyle = 0
RightToLeft = 0 'False
PictureType = 0
TabBehavior = 0
OwnerDraw = 0
Editable = 0
ShowComboButton = 1
WordWrap = 0 'False
TextStyle = 0
TextStyleFixed = 0
OleDragMode = 0
OleDropMode = 0
DataMode = 0
VirtualData = -1 'True
DataMember = ""
ComboSearch = 3
AutoSizeMouse = -1 'True
FrozenRows = 0
FrozenCols = 0
AllowUserFreezing= 0
BackColorFrozen = 0
ForeColorFrozen = 0
WallPaperAlignment= 9
AccessibleName = ""
AccessibleDescription= ""
AccessibleValue = ""
AccessibleRole = 24
End
Begin MSComDlg.CommonDialog Dialogo
Left = -70305
Top = 495
_ExtentX = 847
_ExtentY = 847
_Version = 393216
End
Begin PCGestion.ucGrdBttn cmComentario
Height = 375
Left = -71025
TabIndex = 54
TabStop = 0 'False
Top = 3000
Width = 2985
_ExtentX = 5265
_ExtentY = 661
Caption = "Modificar Comentario"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Image = "FrmMntArt.frx":0214
End
Begin PCGestion.bsGradientLabel lblExisteCom
Height = 405
Left = -73515
Top = 2985
Visible = 0 'False
Width = 2430
_ExtentX = 4921
_ExtentY = 714
Caption = "¡ Existe Comentario!"
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 8454143
Colour2 = 49152
CaptionAlignment= 1
End
Begin PCGestion.miText ioPREVEN
Height = 525
Left = 5115
TabIndex = 7
Top = 2925
Width = 1410
_ExtentX = 2487
_ExtentY = 926
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
dspFormat = ""
Enabled = -1 'True
EsPassword = -1 'True
End
Begin PCGestion.miText ioDCTO
Height = 525
Left = -68895
TabIndex = 8
Top = 570
Width = 1020
_ExtentX = 1799
_ExtentY = 926
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
dspFormat = ""
Enabled = -1 'True
EsPassword = -1 'True
End
Begin PCGestion.miText ioSTOCKMIN
Height = 525
Left = -73515
TabIndex = 10
Top = 1065
Width = 1170
_ExtentX = 2064
_ExtentY = 926
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
dspFormat = ""
Enabled = -1 'True
EsPassword = -1 'True
End
Begin PCGestion.miText ioSTOCKMAX
Height = 525
Left = -71385
TabIndex = 11
Top = 1065
Width = 1170
_ExtentX = 2064
_ExtentY = 926
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
dspFormat = ""
Enabled = -1 'True
EsPassword = -1 'True
End
Begin PCGestion.miText ioPEDIR
Height = 525
Left = -68880
TabIndex = 12
Top = 1065
Width = 1170
_ExtentX = 2064
_ExtentY = 926
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
dspFormat = ""
Enabled = -1 'True
EsPassword = -1 'True
End
Begin PCGestion.miText ioPRECOM
Height = 525
Left = 1350
TabIndex = 6
Top = 2910
Width = 1485
_ExtentX = 2619
_ExtentY = 926
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
dspFormat = ""
Enabled = -1 'True
EsPassword = -1 'True
End
Begin VB.PictureBox ioFOTO
Height = 3075
Left = -67545
ScaleHeight = 3015
ScaleWidth = 3375
TabIndex = 65
Top = 525
Width = 3435
End
Begin PCGestion.miText ioIVACOM
Height = 525
Left = -68880
TabIndex = 14
Top = 1725
Width = 1170
_ExtentX = 2064
_ExtentY = 926
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
dspFormat = ""
Enabled = -1 'True
EsPassword = -1 'True
End
Begin VB.Label Label9
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "IVA COMPRA"
Height = 270
Left = -70200
TabIndex = 67
Top = 1785
Width = 1290
End
Begin VB.Label Label18
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "CANTIDAD A PEDIR"
Height = 645
Left = -70005
TabIndex = 66
Top = 1035
Width = 1080
End
Begin VB.Label Label23
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "PRECIO COMPRA"
Height = 645
Left = -74040
TabIndex = 64
Top = 495
Width = 900
End
Begin VB.Label Label24
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "DESCUENTO"
Height = 345
Left = -70290
TabIndex = 63
Top = 645
Width = 1305
End
Begin VB.Label lblPRECOM
Alignment = 1 'Right Justify
BackColor = &H00AC998C&
BeginProperty Font
Name = "Trebuchet MS"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 345
Left = -73080
TabIndex = 62
Top = 630
Width = 1335
End
Begin VB.Label lblPrecomFin
Alignment = 1 'Right Justify
BackColor = &H00AC998C&
BeginProperty Font
Name = "Trebuchet MS"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 345
Left = -66465
TabIndex = 61
Top = 675
Width = 1335
End
Begin VB.Label Label15
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "PRECIO COMPRA FINAL"
Height = 885
Left = -67710
TabIndex = 60
Top = 360
Width = 1125
End
Begin VB.Label Label16
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "STOCK MINIMO"
Height = 645
Left = -74445
TabIndex = 58
Top = 1005
Width = 900
End
Begin VB.Label Label17
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "STOCK MAXIMO"
Height = 645
Left = -72315
TabIndex = 57
Top = 1020
Width = 885
End
Begin VB.Label Label19
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "PROVEEDOR"
Height = 330
Left = -74985
TabIndex = 56
Top = 2430
Width = 1410
End
Begin VB.Label Label20
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "IVA VENTA"
Height = 330
Left = -74730
TabIndex = 55
Top = 1800
Width = 1155
End
Begin MSForms.CheckBox ioSTOCK
Height = 450
Left = -73515
TabIndex = 9
TabStop = 0 'False
Top = 450
Width = 1965
VariousPropertyBits= 746588183
BackColor = 12632256
ForeColor = -2147483630
DisplayStyle = 4
Size = "3466;794"
Value = "0"
Caption = "TRATAR STOCK"
FontName = "Trebuchet MS"
FontHeight = 225
FontCharSet = 0
FontPitchAndFamily= 2
End
Begin MSForms.CheckBox ioTARIFA
Height = 750
Left = 2940
TabIndex = 17
TabStop = 0 'False
Top = 2805
Width = 1080
VariousPropertyBits= 746596371
BackColor = 12632256
ForeColor = -2147483630
DisplayStyle = 4
Size = "1905;1323"
Value = "0"
Caption = "USAR TARIFA"
FontName = "Trebuchet MS"
FontHeight = 225
FontCharSet = 0
FontPitchAndFamily= 2
End
Begin VB.Label Label13
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "PRECIO VENTA"
Height = 645
Left = 4215
TabIndex = 47
Top = 2850
Width = 885
End
Begin VB.Label Label12
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "PRECIO COMPRA"
Height = 645
Left = 390
TabIndex = 46
Top = 2835
Width = 900
End
Begin VB.Label Label11
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "SECCION"
Height = 300
Left = 5745
TabIndex = 44
Top = 600
Width = 900
End
Begin VB.Label Label10
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "REFERENCIA"
Height = 360
Left = 120
TabIndex = 43
Top = 585
Width = 1215
End
Begin VB.Label Label8
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "ABREVIA"
Height = 360
Left = 3225
TabIndex = 42
Top = 585
Width = 900
End
Begin VB.Label Label7
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "SUBFAMILIA"
Height = 300
Left = 135
TabIndex = 41
Top = 1770
Width = 1170
End
Begin VB.Label Label6
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "FAMILIA"
Height = 330
Left = 465
TabIndex = 40
Top = 1170
Width = 825
End
Begin VB.Label Label2
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "MODELO"
Height = 360
Left = 405
TabIndex = 39
Top = 2340
Width = 915
End
End
Begin PCGestion.chameleonButton cmdPrevious
Height = 630
Left = 1080
TabIndex = 27
TabStop = 0 'False
Top = 5415
Width = 1050
_ExtentX = 1852
_ExtentY = 1111
BTYPE = 9
TX = "F6"
ENAB = -1 'True
BeginProperty FONT {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
COLTYPE = 1
FOCUSR = -1 'True
BCOL = 11513775
BCOLO = 11513775
FCOL = 0
FCOLO = 0
MCOL = 12632256
MPTR = 1
MICON = "FrmMntArt.frx":0230
PICN = "FrmMntArt.frx":024C
UMCOL = -1 'True
SOFT = 0 'False
PICPOS = 0
NGREY = 0 'False
FX = 0
HAND = 0 'False
CHECK = 0 'False
VALUE = 0 'False
End
Begin PCGestion.bsGradientLabel lblstatus
Height = 375
Left = 0
Top = 5025
Width = 10995
_ExtentX = 16722
_ExtentY = 661