forked from marianodugo/tpv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathufrmMenu.dfm
1889 lines (1889 loc) · 79.4 KB
/
ufrmMenu.dfm
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
object frmMenu: TfrmMenu
Left = 0
Top = 0
Caption = 'Terminal de Punto de Venta'
ClientHeight = 576
ClientWidth = 957
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
FormStyle = fsMDIForm
OldCreateOrder = False
WindowState = wsMaximized
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object rbnMenu: TdxRibbon
Left = 0
Top = 0
Width = 957
Height = 145
ApplicationButton.Glyph.Data = {
36100000424D3610000000000000360000002800000020000000200000000100
2000000000000010000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000303031B0303031E00000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000001111
11861D1D1DF8202020FB14141495000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000606062E2323
23FF5A5A5AFF424242FF212120FF060606350000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000E0E0E72171717C213131399020202110000000000000000000000000000
0000000000000000000000000000000000000000000000000001060606471E1E
1EFE767676FF828282FF252525FF111111990000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000A0A
0A54282828FF383838FF292929FF161616AC0000000000000000000000000000
00000000000000000000000000050000001500000029000000300101015B1111
11EC3D3D3DFF6C6C6DFF5E5E5EFF2B2B2BFF0101011600000000000000010101
010C000000000000000000000000000000000000000000000000000000000E0E
0E87373737FF848484FF3A3A3AFF1A1A1AE60000001F0000001A000000280000
0034000000260000002D000000430000004C00000060050505A6202020F36767
67FFA7A7A7FF9D9D9CFF595959FF1B1B1BD6000000060909094A191919D81D1D
1DEB1414149A0101010400000000000000000000000000000000000000000606
06311F1F1FFB767676FF656565FF232323FA070707930000004C000000590000
005A00000056000000590000005D04040492181818E5535353FF999999FFA2A2
A2FF676767FF272727FF0F0F0FE50101015B000000491C1C1CF2454545FF4343
43FF232323FF0C0C0C5D00000000000000000000000000000000000000000000
00000E0E0E93434343FFA7A7A7FF939393FF2B2B2BFF060606A7080808821414
14C5121212B905050589111111D1353535FF6D6D6DFF848484FF6A6A6AFF4D4D
4DFF4A4A4AFF636363FF343434F80C0C0CBA0101016E191919F6656565FF9494
94FF2E2E2EFF141414BA00000000000000000000000000000000000000000000
0000010101040A0A0A993E3E3EFFA9A9A9FFA2A2A2FF383838FF161616FF2323
23FF1C1C1CFF262626FF4A4A4AFF757575FF808080FF898989FFA5A5A5FFBDBD
BDFFD7D7D7FFF0F0F0FFB3B3B3FF393939FF0E0E0EC9101010D42A2A2AFF6868
68FF5A5A5AFF313131FF0505053D000000000000000000000000000000000000
00000000000000000000050505742E2E2EF57A7A7AFF6B6B6BFF4C4C4CFF6B6B
6BFF858585FFA6A6A6FFBCBCBCFFC7C7C7FFD3D3D3FFD9D9D9FFDBDBDBFFDBDB
DBFFDADADAFFECECECFFE0E0E0FF929292FF373737FF373737FF919191FFA4A4
A4FF737373FF2A2A2AFF03030354000000020000000000000000000000000000
0000000000000000000000000000101010C8747474FFB6B6B6FFC5C5C5FFCCCC
CCFFD1D1D1FFD1D1D1FFD1D1D1FFD1D1D1FFD2D2D2FFD3D3D3FFD4D4D4FFD6D6
D6FFD6D6D6FFE5E5E5FFE3E3E3FFADADADFF818181FF5B5B5BFF757575FF4F4F
4FFE1A1A1AE9060606850000004D000000230000000000000000000000000000
000000000000000000000000000E2F2F2FF1C0C0C0FFC9C9C9FFC7C7C7FFC8C8
C8FFC9C9C9FFCACACAFFCCCCCCFFCECECEFFD0D0D0FFD2D2D2FFD4D4D4FFD6D6
D6FFD6D6D6FFE2E2E2FFE9E9E9FFB3B3B3FF979797FF787878FF383838FF1515
15F50303036100000032000000480000004B0000001E00000000000000000000
00000000000000000000000000364A4A4AFFCBCBCBFFC3C3C3FFC5C5C5FFC7C7
C7FFC8C8C8FFCACACAFFCCCCCCFFCECECEFFD0D0D0FFD2D2D2FFD3D3D3FFD5D5
D5FFD6D6D6FFDEDEDEFFECECECFFBEBEBEFF959595FF8B8B8BFF707070FF3333
33FF0D0D0D95000000270000003C000000430000002300000000000000000000
0000000000000000000001010168666666FFCFCFCFFFC3C3C3FFC5C5C5FFC6C6
C6FFC8C8C8FFCACACAFFCCCCCCFFCECECEFFCFCFCFFFD1D1D1FFD3D3D3FFD5D5
D5FFD6D6D6FFDBDBDBFFECECECFFC9C9C9FF989898FF8B8B8BFF7E7E7EFF4949
49FF141414B6000000000000000D0000000A0000000200000000000000000000
000000000000000000000909099B848484FFCCCCCCFFC3C3C3FFC4C4C4FFC6C6
C6FFC8C8C8FFC9C9C9FFCBCBCBFFCDCDCDFFCFCFCFFFD0D0D0FFD3D3D3FFD7D7
D7FFDCDCDCFFE0E0E1FFEFEFEFFFDDDDDDFFA6A6A6FF8B8B8BFF808080FF5656
56FF1C1C1CDC0000000000000000000000000000000000000000000000000000
00000000000000000003151515DAA5A5A5FFC7C7C7FFC3C3C3FFC4C4C4FFC6C6
C6FFC6C6C6FFC8C8C8FFCBCBCBFFD5D5D5FFE0E0E0FFE1E1E0FFD8D8D9FFCACB
CCFFBDBCBBFFB1B1B1FFC3C3C4FFB3B3B3FF9C9B9AFFA1A1A1FF7E7E7EFF6262
62FF242424F80202021700000000000000000000000000000000000000000000
000000000011050505AF646464FFC8C8C8FFC0C0C0FFC2C2C2FFC7C7C7FFCCCC
CCFFCFCFCFFFCECECEFFCBCBCBFFAFAFAFFF7F7F7FFF939495FF908F8EFF8E89
7DFFAAA59CFFB4AE9EFFA09E9AFF4F4D4BFF241F18FF919293FF969696FF6767
67FF2B2B2BFF0505053700000000000000000000000000000000020202040505
05661D1D1DE86D6D6DFFC9C9C9FFCCCCCCFFC5C5C5FFC1C1C1FFB9B9B9FFB1B1
B1FFABABABFFAAAAAAFFBCBCBCFF4B4B4BFF000000FF5D5D5DFFB9B09DFFF2EA
D2FFFFFFF1FFF9F4E1FFCCC5B5FF6B6967FF1C1C1CFF282B2FFF908A86FF8684
84FF2D2D2DFF08080857000000000000000000000000000000000D0D0DCA4B4B
4BFFB2B1B1FFD4D6D8FFDEE0E1FFA1A1A1FFA9A9A9FFAFAFAFFFB9B9B9FFC7C7
C7FFD5D5D5FFE0E0E0FFF8F8F8FF757575FF111113FF686560FFE4DAC3FFEAE1
C8FFBBB69FFFF4EEDAFFD7CFC0FF8F8F8EFF2E2C2AFF54432CFF395E71FFB5BF
C5FF555352FF0808087800000000000000000000000000000000080808C05757
57FFD0D1D1FFE0D7CDFF898077FF7C7E81FFE8E8E8FFE7E7E6FFF1F1F3FFEEF0
F6FFF0F1F4FFE8E8E7FFF9F9F9FF8D8D8DFF101011FF605D56FFEDE4D5FFE0D3
BBFFA8A29CFFDCD4B8FFC7BEAAFFA1A3A7FF855F2EFF936E3BFF1D7BA6FF8598
9CFF565251FF141414F1141414BA070707460202021400000000020202040D0D
0D86222224E74A3E2FFF78542BFF7F7468FFEDEFF1FFDEDEE0FFB6B3AAFFAFA3
81FF7A7463FFDCDDE0FFF8F8F8FFAFAFAFFF131313FF6F6D6AFFD9D3C5FFE6DB
CDFFDAD1D4FFC9C0A9FFB9B6B0FF8F8E8FFF63553CFF6D7767FF936324FF5E47
2AFF1A1D21FF242424FF2B2B2BFF313131FF212121E20707073F000000000000
000000000009080B0E963B3126FF907D67FFEAEBEEFFD5D7DCFF7C745CFFAA90
4BFF615432FFB1AFA9FFC1BEB5FFA6A39AFF2E3137FF3E5AA9FFBCBAB6FFC4BE
B0FF9C968DFFACAAA6FFC9CBCDFF3C4148FF654B28FF936121FF956526FF958C
7FFF35373BFF545454FFA4A4A4FF565656FF232323FF0A0A0A59000000000000
0000000000000000000007090A792C2A28FFB2B1B0FF9E9D9BFF7F7F80FF5D68
87FF596A99FF4C619DFF3F5596FF405BA9FF4570E7FF2A5ADEFF3656B2FF8D93
A3FFB7B6B2FF9B9DA0FF505152FF6D5737FFA4793DFFA88046FFAC8143FFA695
7CFF515559FF464646FF3A3A3AFF1B1B1BF40808084700000000000000000000
0000000000000000000000000000101010BE3D3C3CFF999793FF8F8D87FF284E
BFFF3B70FFFF4B7CFFFF5176E3FF527EFFFF4979FFFF3B68E5FF2750C3FF5E6A
8DFFAEADADFF3A3F4AFF715B3CFFBC8B45FFA87B3CFF9D6F30FF8D5F22FF815E
2FFF52504CFF1E1F20FF1D1D1DF40D0D0D630000000000000000000000000000
00000000000000000000000000000E0E0E772D2D2DFF2D2E2EF41B170CED243B
85FF477BFFFF5076E7FF577AE5FF5681FFFF4C79FDFF3D69E6FF2D55C7FF5065
A1FF697291FF343E63FF322A1FFF624621FF563D1DFF44331EFF322A20FF1D1C
1AEF111111B10D0D0D5F03030319000000000000000000000000000000000000
00000000000000000000000000000E0E0E7B2A2A2AFF1C1C1CD10A0905511F22
2DFF3966ECFF4D72DEFF527CF8FF507BFDFF4876FBFF3A67E3FF2953C7FF1949
D7FF1035B7FF161C39FF181713C60F1318B70E1116A4090C107A050709450102
0211000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000010101083292929FF222222F3000000001613
0AAF222B4CFF3C62D6FF497BFFFF4676FCFF3E70FAFF335FDAFF2350CFFF0F3E
D4FF132159FF1F1B12D900010103000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000005050526171717AF0E0E0E6D000000000202
020A18150ABD21263BFF2A49A7FF305CE0FF2B5CEAFF2349BDFF173598FF1A22
44FF1E1B11DA0505052200000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000E0C076A18150DC91D1F28EF1D2236F81C1F2AF21B1914D31210
087F0202020C0000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000020B09034B100E04730D0B05570202010D0000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000}
ApplicationButton.Menu = bamMenu
BarManager = bmBarras
ColorSchemeName = 'Office2007Blue'
PopupMenuItems = []
QuickAccessToolbar.Toolbar = barAppMenu
SupportNonClientDrawing = True
Contexts = <>
TabOrder = 0
TabStop = False
object tabVentas: TdxRibbonTab
Active = True
Caption = 'Ventas'
Groups = <
item
ToolbarName = 'barArchivosVenta'
end
item
ToolbarName = 'barDocumentosVenta'
end
item
ToolbarName = 'barInformesVenta'
end>
end
object tabCompras: TdxRibbonTab
Caption = 'Compras'
Groups = <
item
ToolbarName = 'barArchivosCompra'
end
item
ToolbarName = 'barDocumentosCompra'
end
item
ToolbarName = 'barInformesCompra'
end>
end
object tabUtilidades: TdxRibbonTab
Caption = 'Utilidades'
Groups = <
item
ToolbarName = 'barOperaciones'
end
item
ToolbarName = 'barImprimir'
end>
end
object tabInformes: TdxRibbonTab
Caption = 'Informes'
Groups = <
item
ToolbarName = 'barEstadisticasGraficos'
end
item
ToolbarName = 'barListadosBasicos'
end
item
ToolbarName = 'barDocumentos'
end>
end
object tabSistema: TdxRibbonTab
Caption = 'Sistema'
Groups = <
item
ToolbarName = 'barAdministracion'
end
item
ToolbarName = 'barArchivosSistema'
end
item
ToolbarName = 'barAdministrarBaseDatos'
end>
end
object tabExtras: TdxRibbonTab
Caption = 'Extras'
Groups = <
item
ToolbarName = 'barAplicaciones'
end>
end
object tabVentanas: TdxRibbonTab
Caption = 'Ventana'
Groups = <
item
ToolbarName = 'barVentanas'
end>
end
object tabAyuda: TdxRibbonTab
Caption = 'Ayuda'
Groups = <
item
ToolbarName = 'barAyuda'
end
item
ToolbarName = 'barTPV'
end>
end
end
object rsbBarraEstado: TdxRibbonStatusBar
Left = 0
Top = 553
Width = 957
Height = 23
Panels = <
item
PanelStyleClassName = 'TdxStatusBarToolbarPanelStyle'
end
item
PanelStyleClassName = 'TdxStatusBarKeyboardStatePanelStyle'
PanelStyle.CapsLockKeyAppearance.ActiveFontColor = clDefault
PanelStyle.CapsLockKeyAppearance.ActiveCaption = 'CAPS'
PanelStyle.CapsLockKeyAppearance.InactiveCaption = 'CAPS'
PanelStyle.NumLockKeyAppearance.ActiveFontColor = clDefault
PanelStyle.NumLockKeyAppearance.ActiveCaption = 'NUM'
PanelStyle.NumLockKeyAppearance.InactiveCaption = 'NUM'
PanelStyle.ScrollLockKeyAppearance.ActiveFontColor = clDefault
PanelStyle.ScrollLockKeyAppearance.ActiveCaption = 'SCRL'
PanelStyle.ScrollLockKeyAppearance.InactiveCaption = 'SCRL'
PanelStyle.InsertKeyAppearance.ActiveFontColor = clDefault
PanelStyle.InsertKeyAppearance.ActiveCaption = 'OVR'
PanelStyle.InsertKeyAppearance.InactiveCaption = 'INS'
end>
Ribbon = rbnMenu
Font.Charset = DEFAULT_CHARSET
Font.Color = clDefault
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ExplicitTop = 32000
ExplicitWidth = 519
end
object bmBarras: TdxBarManager
AutoHideEmptyBars = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Categories.Strings = (
'Default')
Categories.ItemsVisibles = (
2)
Categories.Visibles = (
True)
ImageOptions.LargeImages = imgImagenes
PopupMenuLinks = <>
ShowCloseButton = True
UseSystemFont = True
Left = 264
Top = 232
DockControlHeights = (
0
0
0
0)
object barAppMenu: TdxBar
AllowCustomizing = False
AllowQuickCustomizing = False
Caption = 'AppMenu'
CaptionButtons = <>
DockedLeft = 0
DockedTop = 0
FloatLeft = 355
FloatTop = 223
FloatClientWidth = 51
FloatClientHeight = 22
IsMainMenu = True
ItemLinks = <
item
Visible = True
ItemName = 'btnAyuda'
end
item
Visible = True
ItemName = 'btnAcercaDe'
end>
MultiLine = True
OneOnRow = True
Row = 0
UseOwnFont = False
Visible = True
WholeRow = True
end
object barArchivosVenta: TdxBar
Caption = 'Archivos de venta'
CaptionButtons = <>
DockedLeft = 0
DockedTop = 0
FloatLeft = 545
FloatTop = 8
FloatClientWidth = 73
FloatClientHeight = 120
ItemLinks = <
item
Visible = True
ItemName = 'btnProductos'
end
item
Visible = True
ItemName = 'btnComerciales'
end
item
Visible = True
ItemName = 'btnClientes'
end>
OneOnRow = False
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barArchivosCompra: TdxBar
Caption = 'Archivos de compra'
CaptionButtons = <>
DockedLeft = 0
DockedTop = 0
FloatLeft = 545
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnProductos'
end
item
Visible = True
ItemName = 'btnProveedores'
end>
OneOnRow = False
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barDocumentosVenta: TdxBar
Caption = 'Documentos de venta'
CaptionButtons = <>
DockedLeft = 200
DockedTop = 0
FloatLeft = 748
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnPresupuestos'
end
item
Visible = True
ItemName = 'btnAlbaranesVenta'
end
item
Visible = True
ItemName = 'btnFacturasVenta'
end
item
Visible = True
ItemName = 'btnTicketsVenta'
end>
OneOnRow = False
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barInformesVenta: TdxBar
Caption = 'Informes de venta'
CaptionButtons = <>
DockedLeft = 472
DockedTop = 0
FloatLeft = 748
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnListaProductos'
end
item
Visible = True
ItemName = 'btnListaClientes'
end
item
BeginGroup = True
Visible = True
ItemName = 'btnDocumentosVenta'
end
item
BeginGroup = True
Visible = True
ItemName = 'btnGraficoBeneficio'
end>
OneOnRow = False
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barVentanas: TdxBar
Caption = 'Ventanas'
CaptionButtons = <>
DockedLeft = 0
DockedTop = 0
FloatLeft = 764
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnCascada'
end
item
Visible = True
ItemName = 'btnHorizontal'
end
item
Visible = True
ItemName = 'btnVertical'
end
item
BeginGroup = True
Visible = True
ItemName = 'btnCerrarTodasVentanas'
end
item
BeginGroup = True
Visible = True
ItemName = 'btnSeleccionarVentana'
end>
OneOnRow = True
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barDocumentosCompra: TdxBar
Caption = 'Documentos de compra'
CaptionButtons = <>
DockedLeft = 150
DockedTop = 0
FloatLeft = 983
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnPedidosCompra'
end
item
Visible = True
ItemName = 'btnAlbaranesCompra'
end
item
Visible = True
ItemName = 'btnFacturasCompra'
end>
OneOnRow = False
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barInformesCompra: TdxBar
Caption = 'Informes de compra'
CaptionButtons = <>
DockedLeft = 357
DockedTop = 0
FloatLeft = 983
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnListaProveedores'
end
item
BeginGroup = True
Visible = True
ItemName = 'btnDocumentosCompra'
end
item
BeginGroup = True
Visible = True
ItemName = 'btnGraficoBeneficio'
end>
OneOnRow = False
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barOperaciones: TdxBar
Caption = 'Operaciones'
CaptionButtons = <>
DockedLeft = 0
DockedTop = 0
FloatLeft = 983
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnTraspasarDocumentosCompraVenta'
end
item
BeginGroup = True
Visible = True
ItemName = 'btnActualizarPreciosProductos'
end
item
BeginGroup = True
Visible = True
ItemName = 'btnInicializarStockCero'
end>
OneOnRow = False
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barImprimir: TdxBar
Caption = 'Imprimir'
CaptionButtons = <>
DockedLeft = 324
DockedTop = 0
FloatLeft = 983
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnImpresionDocumentos'
end
item
Visible = True
ItemName = 'btnImpresionRecibos'
end>
OneOnRow = False
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barEstadisticasGraficos: TdxBar
Caption = 'Estad'#237'sticas y gr'#225'ficos'
CaptionButtons = <>
DockedLeft = 0
DockedTop = 0
FloatLeft = 983
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnEstadisticasProductos'
end
item
Visible = True
ItemName = 'btnEstadisticasClientes'
end
item
BeginGroup = True
Visible = True
ItemName = 'btnGraficoBeneficio'
end>
OneOnRow = False
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barListadosBasicos: TdxBar
Caption = 'Listados b'#225'sicos'
CaptionButtons = <>
DockedLeft = 235
DockedTop = 0
FloatLeft = 983
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnListaProductos'
end
item
Visible = True
ItemName = 'btnListaClientes'
end
item
Visible = True
ItemName = 'btnListaProveedores'
end>
OneOnRow = False
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barDocumentos: TdxBar
Caption = 'Documentos'
CaptionButtons = <>
DockedLeft = 438
DockedTop = 0
FloatLeft = 983
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnDocumentosVenta'
end
item
Visible = True
ItemName = 'btnDocumentosCompra'
end
item
BeginGroup = True
Visible = True
ItemName = 'btnListaComisionesComerciales'
end>
OneOnRow = False
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barAdministracion: TdxBar
Caption = 'Administraci'#243'n'
CaptionButtons = <>
DockedLeft = 0
DockedTop = 0
FloatLeft = 983
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnConfiguracionGeneral'
end>
OneOnRow = False
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barArchivosSistema: TdxBar
Caption = 'Archivos de sistema'
CaptionButtons = <>
DockedLeft = 91
DockedTop = 0
FloatLeft = 983
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnFacturasAutomaticas'
end
item
BeginGroup = True
Visible = True
ItemName = 'btnPaises'
end
item
Visible = True
ItemName = 'btnFormasPago'
end
item
Visible = True
ItemName = 'btnMantenimientoFamilias'
end>
OneOnRow = False
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barAdministrarBaseDatos: TdxBar
Caption = 'Administrar la base de datos'
CaptionButtons = <>
DockedLeft = 369
DockedTop = 0
FloatLeft = 983
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnCompactarRepararBaseDatos'
end
item
BeginGroup = True
Visible = True
ItemName = 'btnCopiaSeguridad'
end
item
Visible = True
ItemName = 'btnRestaurarCopiaSeguridad'
end>
OneOnRow = False
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barAplicaciones: TdxBar
Caption = 'Aplicaciones'
CaptionButtons = <>
DockedLeft = 0
DockedTop = 0
FloatLeft = 983
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnCalculadora'
end
item
Visible = True
ItemName = 'btnCalendario'
end
item
Visible = True
ItemName = 'btnExploradorInternet'
end
item
Visible = True
ItemName = 'btnBlocNotas'
end
item
BeginGroup = True
Visible = True
ItemName = 'btnEnviarCorreoElectronico'
end>
OneOnRow = True
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barAyuda: TdxBar
Caption = 'Ayuda'
CaptionButtons = <>
DockedLeft = 0
DockedTop = 0
FloatLeft = 983
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnAyuda'
end>
OneOnRow = False
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object barTPV: TdxBar
Caption = 'TPV'
CaptionButtons = <>
DockedLeft = 56
DockedTop = 0
FloatLeft = 983
FloatTop = 8
FloatClientWidth = 0
FloatClientHeight = 0
ItemLinks = <
item
Visible = True
ItemName = 'btnAcercaDe'
end>
OneOnRow = False
Row = 0
UseOwnFont = False
Visible = True
WholeRow = False
end
object btnProductos: TdxBarLargeButton
Caption = 'Productos'
Category = 0
Hint = 'Productos'
Visible = ivAlways
end
object btnComerciales: TdxBarLargeButton
Caption = 'Comerciales'
Category = 0
Hint = 'Comerciales'
Visible = ivAlways
end
object btnClientes: TdxBarLargeButton
Caption = 'Clientes'
Category = 0
Hint = 'Clientes'
Visible = ivAlways
end
object btnPresupuestos: TdxBarLargeButton
Caption = 'Presupuestos'
Category = 0
Hint = 'Presupuestos'
Visible = ivAlways
end
object btnAlbaranesVenta: TdxBarLargeButton
Caption = 'Albaranes de venta'
Category = 0
Hint = 'Albaranes de venta'
Visible = ivAlways
end
object btnFacturasVenta: TdxBarLargeButton
Caption = 'Facturas de venta'
Category = 0
Hint = 'Facturas de venta'
Visible = ivAlways
end
object btnTicketsVenta: TdxBarLargeButton
Caption = 'Tickets de venta'
Category = 0
Hint = 'Tickets de venta'
Visible = ivAlways
end
object btnListaProductos: TdxBarLargeButton
Caption = 'Lista de productos'
Category = 0
Hint = 'Lista de productos'
Visible = ivAlways
end
object btnListaClientes: TdxBarLargeButton
Caption = 'Lista de clientes'
Category = 0
Hint = 'Lista de clientes'
Visible = ivAlways
end
object btnDocumentosVenta: TdxBarSubItem
Caption = 'Documentos de venta'
Category = 0
Visible = ivAlways
ItemLinks = <
item
Visible = True
ItemName = 'btnListaPresupuestosVenta'
end
item
Visible = True
ItemName = 'btnListaAlbaranesVenta'
end
item
Visible = True
ItemName = 'btnListaFacturasVenta'
end
item
Visible = True
ItemName = 'btnListaTicketsVenta'
end
item
BeginGroup = True
Visible = True
ItemName = 'btnListaVencimientos'
end
item
Visible = True
ItemName = 'btnImpresionRecibos'
end>
ItemOptions.Size = misLarge
end
object btnGraficoBeneficio: TdxBarLargeButton
Caption = 'Gr'#225'fico del beneficio'
Category = 0
Hint = 'Gr'#225'fico del beneficio'
Visible = ivAlways
end
object btnListaPresupuestosVenta: TdxBarLargeButton
Caption = 'Lista de presupuestos de venta'
Category = 0
Hint = 'Lista de presupuestos de venta'
Visible = ivAlways
end
object btnListaAlbaranesVenta: TdxBarLargeButton
Caption = 'Lista de albaranes de venta'
Category = 0
Hint = 'Lista de albaranes de venta'
Visible = ivAlways
end
object btnListaFacturasVenta: TdxBarLargeButton
Caption = 'Lista de facturas de venta'
Category = 0
Hint = 'Lista de facturas de venta'
Visible = ivAlways
end
object btnListaTicketsVenta: TdxBarLargeButton
Caption = 'Lista de tickets de venta'
Category = 0
Hint = 'Lista de tickets de venta'
Visible = ivAlways
end
object btnListaComisionesComerciales: TdxBarLargeButton
Caption = 'Lista de comisiones a comerciales'
Category = 0
Hint = 'Lista de comisiones a comerciales'
Visible = ivAlways
end
object btnListaVencimientos: TdxBarLargeButton
Caption = 'Lista de vencimientos'
Category = 0
Hint = 'Lista de vencimientos'
Visible = ivAlways
end
object btnImpresionRecibos: TdxBarLargeButton
Caption = 'Impresi'#243'n de recibos'
Category = 0
Hint = 'Impresi'#243'n de recibos'
Visible = ivAlways
end
object btnCascada: TdxBarLargeButton
Action = actCascada
Category = 0
end
object btnHorizontal: TdxBarLargeButton
Action = actHorizontal
Category = 0
end
object btnVertical: TdxBarLargeButton
Action = actVertical
Category = 0
end
object btnCerrarTodasVentanas: TdxBarLargeButton
Action = actCerrarTodasVentanas
Category = 0
end
object btnSeleccionarVentana: TdxBarListItem