-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmCierreDia.frm
2111 lines (1920 loc) · 62.7 KB
/
frmCierreDia.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"
Begin VB.Form frmCierreDia
BackColor = &H00C0C0C0&
BorderStyle = 1 'Fixed Single
Caption = "Cálculo de datos del cierre"
ClientHeight = 7185
ClientLeft = 2145
ClientTop = 1770
ClientWidth = 11520
BeginProperty Font
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MDIChild = -1 'True
ScaleHeight = 7185
ScaleWidth = 11520
Begin PCGestion.chameleonButton cbCancelar
Height = 795
Left = 6225
TabIndex = 17
TabStop = 0 'False
Top = 6360
Width = 930
_ExtentX = 1640
_ExtentY = 1402
BTYPE = 9
TX = "&Cancelar"
ENAB = -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
COLTYPE = 1
FOCUSR = -1 'True
BCOL = 11513775
BCOLO = 11513775
FCOL = 0
FCOLO = 0
MCOL = 12632256
MPTR = 1
MICON = "frmCierreDia.frx":0000
PICN = "frmCierreDia.frx":001C
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.bsGradientLabel lblEfectivo
Height = 405
Left = 3855
Top = 600
Width = 3210
_ExtentX = 5662
_ExtentY = 714
Caption = ""
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 2
End
Begin PCGestion.bsGradientLabel lblVales
Height = 345
Left = 3855
Top = 1410
Width = 3210
_ExtentX = 5662
_ExtentY = 609
Caption = ""
BeginProperty Fount {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
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 2
End
Begin PCGestion.bsGradientLabel lblTarjeta
Height = 375
Left = 3855
Top = 1020
Width = 3210
_ExtentX = 5662
_ExtentY = 661
Caption = ""
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 2
End
Begin PCGestion.bsGradientLabel lblDevol
Height = 360
Left = 60
Top = 1995
Width = 3675
_ExtentX = 6482
_ExtentY = 635
Caption = ""
BeginProperty Fount {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
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 2
End
Begin PCGestion.bsGradientLabel lblArreglos
Height = 390
Left = 30
Top = 5025
Width = 3720
_ExtentX = 6562
_ExtentY = 688
Caption = ""
BeginProperty Fount {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
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 2
End
Begin PCGestion.bsGradientLabel lblIngresos
Height = 375
Left = 3855
Top = 2670
Width = 3210
_ExtentX = 5662
_ExtentY = 661
Caption = ""
BeginProperty Fount {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
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 2
End
Begin PCGestion.bsGradientLabel lblPagos
Height = 390
Left = 3855
Top = 1770
Width = 3210
_ExtentX = 5662
_ExtentY = 688
Caption = ""
BeginProperty Fount {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
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 2
End
Begin PCGestion.bsGradientLabel lblDeudCli
Height = 360
Left = 60
Top = 2370
Width = 3675
_ExtentX = 6482
_ExtentY = 635
Caption = ""
BeginProperty Fount {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
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 2
End
Begin PCGestion.miText ioFECHA
Height = 495
Left = 810
TabIndex = 0
Top = 30
Width = 1425
_extentx = 2514
_extenty = 873
font = "frmCierreDia.frx":08F6
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.chameleonButton cmCalcular
Height = 420
Left = 2250
TabIndex = 19
TabStop = 0 'False
Top = 570
Width = 1485
_ExtentX = 2619
_ExtentY = 741
BTYPE = 3
TX = "Calcular"
ENAB = -1 'True
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
COLTYPE = 1
FOCUSR = -1 'True
BCOL = 11513775
BCOLO = 11513775
FCOL = 16776960
FCOLO = 16776960
MCOL = 12632256
MPTR = 1
MICON = "frmCierreDia.frx":0922
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 lblEnCaja
Height = 435
Left = 30
Top = 5445
Width = 3720
_ExtentX = 6562
_ExtentY = 767
Caption = ""
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 14.25
Charset = 0
Weight = 700
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 16558731
Colour2 = 14457707
CaptionAlignment= 2
ShadowDKColour = 16711680
TextShadowColour= 16776960
TextShadow = -1 'True
TextShadowYOffset= 1
TextShadowXOffset= 1
End
Begin PCGestion.miText ioB5
Height = 495
Left = 9915
TabIndex = 10
Top = 480
Width = 1425
_extentx = 2514
_extenty = 873
font = "frmCierreDia.frx":093E
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.miText ioB10
Height = 495
Left = 9915
TabIndex = 11
Top = 960
Width = 1425
_extentx = 2514
_extenty = 873
font = "frmCierreDia.frx":096A
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.miText ioB20
Height = 495
Left = 9915
TabIndex = 12
Top = 1440
Width = 1425
_extentx = 2514
_extenty = 873
font = "frmCierreDia.frx":0996
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.miText ioB50
Height = 495
Left = 9915
TabIndex = 13
Top = 1920
Width = 1425
_extentx = 2514
_extenty = 873
font = "frmCierreDia.frx":09C2
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.miText ioB100
Height = 495
Left = 9915
TabIndex = 14
Top = 2400
Width = 1425
_extentx = 2514
_extenty = 873
font = "frmCierreDia.frx":09EE
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.miText ioB200
Height = 495
Left = 9915
TabIndex = 15
Top = 2880
Width = 1425
_extentx = 2514
_extenty = 873
font = "frmCierreDia.frx":0A1A
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.miText ioB500
Height = 495
Left = 9915
TabIndex = 16
Top = 3360
Width = 1425
_extentx = 2514
_extenty = 873
font = "frmCierreDia.frx":0A46
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.miText ioM1
Height = 495
Left = 7665
TabIndex = 2
Top = 495
Width = 1425
_extentx = 2514
_extenty = 873
font = "frmCierreDia.frx":0A72
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.miText ioM2
Height = 495
Left = 7665
TabIndex = 3
Top = 960
Width = 1425
_extentx = 2514
_extenty = 873
font = "frmCierreDia.frx":0A9E
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.miText ioM5
Height = 495
Left = 7665
TabIndex = 4
Top = 1425
Width = 1425
_extentx = 2514
_extenty = 873
font = "frmCierreDia.frx":0ACA
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.miText ioM10
Height = 495
Left = 7665
TabIndex = 5
Top = 1890
Width = 1425
_extentx = 2514
_extenty = 873
font = "frmCierreDia.frx":0AF6
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.miText ioM20
Height = 495
Left = 7665
TabIndex = 6
Top = 2340
Width = 1425
_extentx = 2514
_extenty = 873
font = "frmCierreDia.frx":0B22
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.miText ioM50
Height = 495
Left = 7665
TabIndex = 7
Top = 2790
Width = 1425
_extentx = 2514
_extenty = 873
font = "frmCierreDia.frx":0B4E
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.miText ioM100
Height = 495
Left = 7665
TabIndex = 8
Top = 3240
Width = 1425
_extentx = 2514
_extenty = 873
font = "frmCierreDia.frx":0B7A
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.miText ioM200
Height = 495
Left = 7665
TabIndex = 9
Top = 3690
Width = 1425
_extentx = 2514
_extenty = 873
font = "frmCierreDia.frx":0BA6
dspformat = ""
enabled = -1 'True
espassword = -1 'True
End
Begin PCGestion.bsGradientLabel bsGradientLabel1
Height = 420
Left = 7680
Top = 30
Width = 1365
_ExtentX = 2408
_ExtentY = 741
Caption = "Monedas"
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 1
End
Begin PCGestion.bsGradientLabel bsGradientLabel2
Height = 420
Left = 9930
Top = 30
Width = 1365
_ExtentX = 2408
_ExtentY = 741
Caption = "Billetes"
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 1
End
Begin PCGestion.bsGradientLabel lblTotalB
Height = 435
Left = 9360
Top = 3945
Width = 2130
_ExtentX = 3757
_ExtentY = 767
Caption = ""
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 2
End
Begin PCGestion.bsGradientLabel lblTotalM
Height = 420
Left = 7215
Top = 4350
Width = 1995
_ExtentX = 3519
_ExtentY = 741
Caption = ""
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 2
End
Begin VSFlex8Ctl.VSFlexGrid fg
Height = 2340
Left = 7200
TabIndex = 35
TabStop = 0 'False
Top = 4815
Width = 4305
_cx = 7594
_cy = 4128
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 = 1
Cols = 7
FixedRows = 1
FixedCols = 1
RowHeightMin = 0
RowHeightMax = 0
ColWidthMin = 0
ColWidthMax = 0
ExtendLastCol = 0 'False
FormatString = $"frmCierreDia.frx":0BD2
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.chameleonButton cmCierreCaja
Height = 795
Left = 5235
TabIndex = 36
Top = 6360
Width = 945
_ExtentX = 1667
_ExtentY = 1402
BTYPE = 9
TX = "C&ERRAR CAJA"
ENAB = -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
COLTYPE = 1
FOCUSR = -1 'True
BCOL = 11513775
BCOLO = 11513775
FCOL = 0
FCOLO = 0
MCOL = 12632256
MPTR = 1
MICON = "frmCierreDia.frx":0C77
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.bsGradientLabel lblSumaMB
Height = 405
Left = 90
Top = 6690
Width = 2070
_ExtentX = 3651
_ExtentY = 714
Caption = ""
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 12.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 11250603
Colour2 = 15640462
Colour4 = 16777215
CaptionAlignment= 2
End
Begin PCGestion.bsGradientLabel lblMovimientosCaja
Height = 375
Left = 3855
Top = 3075
Width = 3210
_ExtentX = 5662
_ExtentY = 661
Caption = ""
BeginProperty Fount {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
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 2
End
Begin PCGestion.bsGradientLabel lblDescuadre
Height = 420
Left = 2280
Top = 6675
Width = 2070
_ExtentX = 3651
_ExtentY = 741
Caption = ""
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 12.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 11250603
Colour2 = 15640462
Colour4 = 16777215
CaptionAlignment= 2
End
Begin PCGestion.bsGradientLabel lblCajaA
Height = 360
Left = 3855
Top = 5430
Width = 3210
_ExtentX = 5662
_ExtentY = 635
Caption = ""
BeginProperty Fount {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
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 2
End
Begin PCGestion.bsGradientLabel lblCajaB
Height = 375
Left = 3855
Top = 5805
Width = 3210
_ExtentX = 5662
_ExtentY = 661
Caption = ""
BeginProperty Fount {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
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 2
End
Begin PCGestion.bsGradientLabel lblTotalCobrosRealizados
Height = 465
Left = 45
Top = 4470
Width = 3705
_ExtentX = 6535
_ExtentY = 820
Caption = ""
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 12
Charset = 0
Weight = 700
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 12632256
Colour2 = 14457707
CaptionAlignment= 2
ShadowDKColour = 16711680
TextShadowColour= 16776960
TextShadow = -1 'True
TextShadowYOffset= 1
TextShadowXOffset= 1
End
Begin PCGestion.bsGradientLabel lblVentasNetas
Height = 420
Left = 60
Top = 3525
Width = 3675
_ExtentX = 6482
_ExtentY = 741
Caption = ""
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 700
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 12632256
Colour2 = 14457707
CaptionAlignment= 2
ShadowDKColour = 16711680
TextShadowColour= 16776960
TextShadow = -1 'True
TextShadowYOffset= 1
TextShadowXOffset= 1
End
Begin PCGestion.bsGradientLabel lblSaldoCajaEfectivo
Height = 405
Left = 3840
Top = 2175
Width = 3210
_ExtentX = 5662
_ExtentY = 714
Caption = ""
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 700
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 12632256
Colour2 = 14457707
CaptionAlignment= 2
ShadowDKColour = 16711680
TextShadowColour= 16776960
TextShadow = -1 'True
TextShadowYOffset= 1
TextShadowXOffset= 1
End
Begin PCGestion.bsGradientLabel lblValesEmitidos
Height = 390
Left = 60
Top = 4050
Width = 3690
_ExtentX = 6509
_ExtentY = 688
Caption = ""
BeginProperty Fount {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
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 2
End
Begin PCGestion.bsGradientLabel lblDeudCobradas
Height = 345
Left = 60
Top = 2760
Width = 3675
_ExtentX = 6482
_ExtentY = 609
Caption = ""
BeginProperty Fount {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
CaptionColour = 0
Colour1 = 11513775
Colour2 = 16558731
CaptionAlignment= 2
End
Begin PCGestion.bsGradientLabel lblVentasBrutas
Height = 450
Left = 60
Top = 1140
Width = 3675
_ExtentX = 6482
_ExtentY = 794
Caption = ""
BeginProperty Fount {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Trebuchet MS"
Size = 11.25
Charset = 0
Weight = 700
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionColour = 0
Colour1 = 12632256
Colour2 = 14457707
CaptionAlignment= 2
ShadowDKColour = 16711680
TextShadowColour= 16776960
TextShadow = -1 'True