-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTmpMaDet.frm
2633 lines (2230 loc) · 69.6 KB
/
TmpMaDet.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 = "{BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0"; "TABCTL32.OCX"
Begin VB.Form TmpMaDet
AutoRedraw = -1 'True
BackColor = &H00C0C0C0&
Caption = "Pedidos a Proveedores"
ClientHeight = 8025
ClientLeft = 1110
ClientTop = 345
ClientWidth = 10785
ForeColor = &H00000000&
KeyPreview = -1 'True
LinkTopic = "Form1"
LockControls = -1 'True
ScaleHeight = 8025
ScaleWidth = 10785
StartUpPosition = 2 'CenterScreen
Begin PCGestion.ucGrdBttn ucGrdBttn1
Height = 435
Left = 3600
TabIndex = 41
Top = 7350
Width = 1185
_extentx = 2090
_extenty = 767
caption = "Etiquetas"
forecolor = 16711680
gradientcolor1 = 16777215
gradientcolor2 = 16777215
angle = 274
font = "TmpMaDet.frx":0000
image = "TmpMaDet.frx":002C
End
Begin TabDlg.SSTab Tab2
Height = 4020
Left = 30
TabIndex = 27
Top = 1485
Width = 10740
_ExtentX = 18944
_ExtentY = 7091
_Version = 393216
Style = 1
Tabs = 2
TabHeight = 520
BackColor = 12632256
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
TabCaption(0) = "Artículos"
TabPicture(0) = "TmpMaDet.frx":004A
Tab(0).ControlEnabled= -1 'True
Tab(0).Control(0)= "fg"
Tab(0).Control(0).Enabled= 0 'False
Tab(0).ControlCount= 1
TabCaption(1) = "Totales"
TabPicture(1) = "TmpMaDet.frx":0066
Tab(1).ControlEnabled= 0 'False
Tab(1).ControlCount= 0
Begin VSFlex8Ctl.VSFlexGrid fg
Height = 3600
Left = 60
TabIndex = 39
TabStop = 0 'False
Top = 360
Width = 10620
_cx = 18732
_cy = 6350
Appearance = 1
BorderStyle = 1
Enabled = -1 'True
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
MousePointer = 0
BackColor = 14331047
ForeColor = -2147483640
BackColorFixed = 15120763
ForeColorFixed = -2147483630
BackColorSel = 14859077
ForeColorSel = -2147483635
BackColorBkg = -2147483636
BackColorAlternate= 15573900
GridColor = -2147483633
GridColorFixed = -2147483632
TreeColor = -2147483632
FloodColor = 192
SheetBorder = -2147483642
FocusRect = 2
HighLight = 1
AllowSelection = -1 'True
AllowBigSelection= 0 'False
AllowUserResizing= 0
SelectionMode = 1
GridLines = 1
GridLinesFixed = 2
GridLineWidth = 1
Rows = 1
Cols = 10
FixedRows = 1
FixedCols = 1
RowHeightMin = 0
RowHeightMax = 0
ColWidthMin = 0
ColWidthMax = 0
ExtendLastCol = 0 'False
FormatString = $"TmpMaDet.frx":0082
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 = 3
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
End
Begin PCGestion.chameleonButton cmdPrevious
Height = 630
Left = 1080
TabIndex = 10
TabStop = 0 'False
Top = 6540
Width = 1050
_extentx = 1852
_extenty = 1111
btype = 9
tx = "F6"
enab = -1 'True
font = "TmpMaDet.frx":0160
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":018C
picn = "TmpMaDet.frx":01AA
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.chameleonButton cmdFirst
Height = 630
Left = 30
TabIndex = 11
TabStop = 0 'False
Top = 6540
Width = 1005
_extentx = 1773
_extenty = 1111
btype = 9
tx = "F5"
enab = -1 'True
font = "TmpMaDet.frx":0E7E
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":0EAA
picn = "TmpMaDet.frx":0EC8
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.chameleonButton cmdNext
Height = 630
Left = 8640
TabIndex = 12
TabStop = 0 'False
Top = 6540
Width = 1050
_extentx = 1852
_extenty = 1111
btype = 9
tx = "F7"
enab = -1 'True
font = "TmpMaDet.frx":1C00
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":1C2C
picn = "TmpMaDet.frx":1C4A
umcol = -1 'True
soft = 0 'False
picpos = 1
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cmdLast
Height = 630
Left = 9705
TabIndex = 13
TabStop = 0 'False
Top = 6540
Width = 1050
_extentx = 1852
_extenty = 1111
btype = 9
tx = "F8"
enab = -1 'True
font = "TmpMaDet.frx":291E
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":294A
picn = "TmpMaDet.frx":2968
umcol = -1 'True
soft = 0 'False
picpos = 1
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cbAgregar
Height = 795
Left = 30
TabIndex = 14
TabStop = 0 'False
Top = 7200
Width = 1065
_extentx = 1879
_extenty = 1402
btype = 9
tx = "&Agregar F1"
enab = -1 'True
font = "TmpMaDet.frx":36A0
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":36CC
picn = "TmpMaDet.frx":36EA
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cbActualizar
Height = 795
Left = 1125
TabIndex = 15
Top = 7200
Width = 1200
_extentx = 2117
_extenty = 1402
btype = 9
tx = "&Actualizar F2"
enab = -1 'True
font = "TmpMaDet.frx":43C6
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":43F2
picn = "TmpMaDet.frx":4410
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cbEdicion
Height = 795
Left = 2355
TabIndex = 16
TabStop = 0 'False
Top = 7200
Width = 990
_extentx = 1746
_extenty = 1402
btype = 9
tx = "&Edicion F3"
enab = -1 'True
font = "TmpMaDet.frx":4CEC
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":4D18
picn = "TmpMaDet.frx":4D36
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cbCancelar
Height = 795
Left = 7620
TabIndex = 17
TabStop = 0 'False
Top = 7200
Width = 930
_extentx = 1640
_extenty = 1402
btype = 9
tx = "&Cancelar"
enab = -1 'True
font = "TmpMaDet.frx":5596
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":55C2
picn = "TmpMaDet.frx":55E0
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cbEliminar
Height = 795
Left = 8595
TabIndex = 18
TabStop = 0 'False
Top = 7200
Width = 1065
_extentx = 1879
_extenty = 1402
btype = 9
tx = "E&liminar F9"
enab = -1 'True
font = "TmpMaDet.frx":5EBC
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":5EE8
picn = "TmpMaDet.frx":5F06
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cbCerrar
Height = 795
Left = 9705
TabIndex = 19
TabStop = 0 'False
Top = 7200
Width = 1050
_extentx = 1852
_extenty = 1402
btype = 9
tx = "Cerrar ESC"
enab = -1 'True
font = "TmpMaDet.frx":6ADA
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":6B06
picn = "TmpMaDet.frx":6B24
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cbLista
Height = 630
Left = 4905
TabIndex = 20
TabStop = 0 'False
Top = 6540
Width = 1185
_extentx = 2090
_extenty = 1111
btype = 9
tx = "Lista F4"
enab = -1 'True
font = "TmpMaDet.frx":7800
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":782C
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.chameleonButton dtAgregar
Height = 585
Left = 30
TabIndex = 21
TabStop = 0 'False
Top = 5550
Width = 735
_extentx = 1296
_extenty = 1032
btype = 9
tx = "Agregar"
enab = -1 'True
font = "TmpMaDet.frx":784A
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":7876
picn = "TmpMaDet.frx":7894
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 1
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton dtActualizar
Height = 585
Left = 780
TabIndex = 22
Top = 5550
Width = 870
_extentx = 1535
_extenty = 1032
btype = 9
tx = "Actualizar"
enab = -1 'True
font = "TmpMaDet.frx":7AA0
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":7ACC
picn = "TmpMaDet.frx":7AEA
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 1
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton dtEdicion
Height = 585
Left = 1680
TabIndex = 23
TabStop = 0 'False
Top = 5550
Width = 720
_extentx = 1270
_extenty = 1032
btype = 9
tx = "Edicion"
enab = -1 'True
font = "TmpMaDet.frx":7CFE
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":7D2A
picn = "TmpMaDet.frx":7D48
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 1
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton dtCancelar
Height = 585
Left = 8445
TabIndex = 24
TabStop = 0 'False
Top = 5550
Width = 810
_extentx = 1429
_extenty = 1032
btype = 9
tx = "Cancelar"
enab = -1 'True
font = "TmpMaDet.frx":7F48
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":7F74
picn = "TmpMaDet.frx":7F92
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 1
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton dtEliminar
Height = 585
Left = 9285
TabIndex = 25
TabStop = 0 'False
Top = 5550
Width = 720
_extentx = 1270
_extenty = 1032
btype = 9
tx = "Eliminar"
enab = -1 'True
font = "TmpMaDet.frx":816E
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":819A
picn = "TmpMaDet.frx":81B8
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 1
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton dtCerrar
Height = 585
Left = 10020
TabIndex = 26
TabStop = 0 'False
Top = 5550
Width = 720
_extentx = 1270
_extenty = 1032
btype = 9
tx = "Cerrar"
enab = -1 'True
font = "TmpMaDet.frx":8384
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":83B0
picn = "TmpMaDet.frx":83CE
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 1
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.bsGradientLabel lblstatus
Height = 375
Left = 30
Top = 6150
Width = 10725
_extentx = 16854
_extenty = 661
caption = ""
fount = "TmpMaDet.frx":85D6
captioncolour = 0
colour1 = 15640462
colour2 = 7177785
captionalignment= 1
End
Begin PCGestion.bsGradientLabel lblStatusD
Height = 375
Left = 2430
Top = 5550
Width = 5985
_extentx = 10557
_extenty = 661
caption = ""
fount = "TmpMaDet.frx":8604
captioncolour = 0
colour1 = 15640462
colour2 = 7177785
captionalignment= 1
End
Begin PCGestion.miText ioNUMERO
Height = 525
Left = 825
TabIndex = 0
Top = 30
Width = 960
_extentx = 1693
_extenty = 926
font = "TmpMaDet.frx":8632
dspformat = ""
enabled = -1 'True
End
Begin PCGestion.miText ioFECHA
Height = 525
Left = 2340
TabIndex = 1
Top = 30
Width = 1230
_extentx = 2170
_extenty = 926
font = "TmpMaDet.frx":865E
dspformat = ""
enabled = -1 'True
End
Begin PCGestion.miText ioTRNSPORTI
Height = 525
Left = 8685
TabIndex = 9
Top = 975
Width = 2115
_extentx = 3731
_extenty = 926
font = "TmpMaDet.frx":868A
dspformat = ""
enabled = -1 'True
End
Begin PCGestion.miCombo cbCODPROV
Height = 540
Left = 4605
TabIndex = 2
Top = 45
Width = 6150
_extentx = 10848
_extenty = 953
font = "TmpMaDet.frx":86B6
End
Begin PCGestion.miCombo cBFPAGO
Height = 480
Left = 810
TabIndex = 3
Top = 525
Width = 3840
_extentx = 6773
_extenty = 847
font = "TmpMaDet.frx":86E2
End
Begin PCGestion.miCombo cbPLAZOE
Height = 570
Left = 5655
TabIndex = 4
Top = 525
Width = 3645
_extentx = 6429
_extenty = 1005
font = "TmpMaDet.frx":870E
End
Begin PCGestion.chameleonButton cbNuevoArticulo
Height = 525
Left = 3495
TabIndex = 37
TabStop = 0 'False
Top = 6615
Width = 1380
_extentx = 2434
_extenty = 926
btype = 9
tx = "Nuevo Artículo"
enab = -1 'True
font = "TmpMaDet.frx":873A
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":8766
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.chameleonButton cbSeleccionaArticulo
Height = 525
Left = 6135
TabIndex = 38
TabStop = 0 'False
Top = 6600
Width = 1395
_extentx = 2461
_extenty = 926
btype = 9
tx = "Buscar Artículo"
enab = -1 'True
font = "TmpMaDet.frx":8784
coltype = 1
focusr = -1 'True
bcol = 11513775
bcolo = 11513775
fcol = 0
fcolo = 0
mcol = 12632256
mptr = 1
micon = "TmpMaDet.frx":87B0
umcol = -1 'True
soft = 0 'False
picpos = 2
ngrey = 0 'False
fx = 0
hand = 0 'False
check = 0 'False
value = 0 'False
End
Begin PCGestion.miCombo cbCODALM
Height = 480
Left = 810
TabIndex = 6
Top = 990
Width = 3285
_extentx = 5794
_extenty = 847
font = "TmpMaDet.frx":87CE
End
Begin PCGestion.ucGrdBttn cmEntrada
Height = 435
Left = 6150
TabIndex = 42
Top = 7350
Width = 1185
_extentx = 2090
_extenty = 767
caption = "Entrada"
forecolor = 16711680
gradientcolor1 = 16777215
gradientcolor2 = 16777215
angle = 274
font = "TmpMaDet.frx":87FA
image = "TmpMaDet.frx":8826
End
Begin PCGestion.miText ioPORTES
Height = 480
Left = 4830
TabIndex = 7
Top = 1005
Width = 1155
_extentx = 2037
_extenty = 847
font = "TmpMaDet.frx":8844
dspformat = ""
enabled = -1 'True
End
Begin PCGestion.miText ioGASTOS
Height = 525
Left = 6720
TabIndex = 8
Top = 990
Width = 1155
_extentx = 2037
_extenty = 926
font = "TmpMaDet.frx":8870
dspformat = ""
enabled = -1 'True
End
Begin PCGestion.miText ioDCTOPP
Height = 525
Left = 10005
TabIndex = 5
Top = 525
Width = 795
_extentx = 1402
_extenty = 926
font = "TmpMaDet.frx":889C
dspformat = ""
enabled = -1 'True
End
Begin VB.Label Label10
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "ALMAC."
BeginProperty Font
Name = "Trebuchet MS"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 90
TabIndex = 40
Top = 1080
Width = 720
End
Begin VB.Label Label9
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "PLAZO ENT."
BeginProperty Font
Name = "Trebuchet MS"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 525
Left = 4530
TabIndex = 36
Top = 495
Width = 1170
End
Begin VB.Label Label8
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "FORMA PAGO"
BeginProperty Font
Name = "Trebuchet MS"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 525
Left = 45
TabIndex = 35
Top = 480
Width = 765
End
Begin VB.Label Label6
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "PORTES"
BeginProperty Font
Name = "Trebuchet MS"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 285
Left = 4065
TabIndex = 34
Top = 1095
Width = 765
End