-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfrmMain.frm
More file actions
3869 lines (3255 loc) · 128 KB
/
Copy pathfrmMain.frm
File metadata and controls
3869 lines (3255 loc) · 128 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
VERSION 5.00
Object = "{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}#1.1#0"; "SHDOCVW.DLL"
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Object = "{3B7C8863-D78F-101B-B9B5-04021C009402}#1.2#0"; "RICHTX32.OCX"
Begin VB.Form frmMain
Caption = "Project Library"
ClientHeight = 6150
ClientLeft = 1350
ClientTop = 3405
ClientWidth = 12060
HelpContextID = 10
Icon = "frmMain.frx":0000
LinkTopic = "Form1"
ScaleHeight = 410
ScaleMode = 3 'Pixel
ScaleWidth = 804
WindowState = 2 'Maximized
Begin MSComctlLib.ImageList imgCatItem
Left = 9915
Top = 1140
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 32
ImageHeight = 32
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 14
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":030A
Key = ""
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":062E
Key = ""
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":0952
Key = ""
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":0C76
Key = ""
EndProperty
BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":0F9A
Key = ""
EndProperty
BeginProperty ListImage6 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":12BE
Key = ""
EndProperty
BeginProperty ListImage7 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":15E2
Key = ""
EndProperty
BeginProperty ListImage8 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":1906
Key = ""
EndProperty
BeginProperty ListImage9 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":1C2A
Key = ""
EndProperty
BeginProperty ListImage10 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":1F4E
Key = ""
EndProperty
BeginProperty ListImage11 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":2272
Key = ""
EndProperty
BeginProperty ListImage12 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":2596
Key = ""
EndProperty
BeginProperty ListImage13 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":28BA
Key = ""
EndProperty
BeginProperty ListImage14 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":2BDE
Key = ""
EndProperty
EndProperty
End
Begin MSComctlLib.ImageList imgTb
Left = 1260
Top = 3495
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 16
ImageHeight = 16
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 50
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":2F02
Key = ""
Object.Tag = "&Eliminar item"
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":37DE
Key = ""
Object.Tag = "&Agregar item"
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":40BA
Key = ""
Object.Tag = "&Módulo .bas"
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":4216
Key = ""
Object.Tag = "&Salir"
EndProperty
BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":466A
Key = ""
Object.Tag = "Mó&dulo .cls"
EndProperty
BeginProperty ListImage6 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":47C6
Key = ""
Object.Tag = "&Indice"
EndProperty
BeginProperty ListImage7 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":4AE2
Key = ""
Object.Tag = "&Ir a VBSoftware"
EndProperty
BeginProperty ListImage8 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":4DFE
Key = ""
Object.Tag = "&Imprimir"
EndProperty
BeginProperty ListImage9 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":4F5A
Key = ""
Object.Tag = "&Buscar"
EndProperty
BeginProperty ListImage10 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":6C36
Key = ""
Object.Tag = "&Copiar"
EndProperty
BeginProperty ListImage11 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":6D4A
Key = ""
Object.Tag = "C&ortar"
EndProperty
BeginProperty ListImage12 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":6E5E
Key = ""
EndProperty
BeginProperty ListImage13 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":6F72
Key = ""
Object.Tag = "&Pegar"
EndProperty
BeginProperty ListImage14 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":7086
Key = ""
EndProperty
BeginProperty ListImage15 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":719A
Key = ""
EndProperty
BeginProperty ListImage16 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":72AE
Key = ""
EndProperty
BeginProperty ListImage17 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":75CA
Key = ""
EndProperty
BeginProperty ListImage18 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":7726
Key = ""
EndProperty
BeginProperty ListImage19 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":7882
Key = ""
Object.Tag = "Exportar a rt&f"
EndProperty
BeginProperty ListImage20 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":79DE
Key = ""
EndProperty
BeginProperty ListImage21 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":7B3A
Key = ""
EndProperty
BeginProperty ListImage22 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":7E5A
Key = ""
Object.Tag = "Ac&tualizar"
EndProperty
BeginProperty ListImage23 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":7FB6
Key = ""
Object.Tag = "Borr&ar"
EndProperty
BeginProperty ListImage24 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":80CE
Key = ""
Object.Tag = "&Respaldar libreria a .zip"
EndProperty
BeginProperty ListImage25 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":89AA
Key = ""
Object.Tag = "&Importar"
EndProperty
BeginProperty ListImage26 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":8E02
Key = ""
Object.Tag = "&Exportar"
EndProperty
BeginProperty ListImage27 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":925A
Key = ""
Object.Tag = "&Formulario"
EndProperty
BeginProperty ListImage28 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":93B6
Key = ""
Object.Tag = "&Control"
EndProperty
BeginProperty ListImage29 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":9512
Key = ""
Object.Tag = "&Página de propiedades"
EndProperty
BeginProperty ListImage30 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":966E
Key = ""
Object.Tag = "Pro&yecto"
EndProperty
BeginProperty ListImage31 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":97CA
Key = ""
Object.Tag = "Exportar a &texto "
EndProperty
BeginProperty ListImage32 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":9AE6
Key = ""
Object.Tag = "Exportar a &html"
EndProperty
BeginProperty ListImage33 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":9E02
Key = ""
Object.Tag = "B&uscar Siguiente"
EndProperty
BeginProperty ListImage34 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":9F5E
Key = ""
Object.Tag = "&Reemplazar"
EndProperty
BeginProperty ListImage35 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":A0BA
Key = ""
Object.Tag = "&Buscar código ..."
EndProperty
BeginProperty ListImage36 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":A3DE
Key = ""
Object.Tag = "&Ver código fuente"
EndProperty
BeginProperty ListImage37 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":A5C2
Key = ""
Object.Tag = "&Modificar item"
EndProperty
BeginProperty ListImage38 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":A71E
Key = ""
Object.Tag = "&Seleccionar todos los itemes"
EndProperty
BeginProperty ListImage39 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":A87E
Key = ""
Object.Tag = "&Quitar selección de itemes"
EndProperty
BeginProperty ListImage40 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":A9DE
Key = ""
Object.Tag = "&Invertir selección"
EndProperty
BeginProperty ListImage41 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":AB3E
Key = ""
EndProperty
BeginProperty ListImage42 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":AC9E
Key = ""
Object.Tag = "&Tip del dia ..."
EndProperty
BeginProperty ListImage43 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":AFC2
Key = ""
Object.Tag = "&Opciones del libreria"
EndProperty
BeginProperty ListImage44 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":B416
Key = ""
EndProperty
BeginProperty ListImage45 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":B732
Key = ""
Object.Tag = "&Email a VBSoftware"
EndProperty
BeginProperty ListImage46 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":B88E
Key = ""
Object.Tag = "A&gregar a bookmark"
EndProperty
BeginProperty ListImage47 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":BBB2
Key = ""
Object.Tag = "&Quitar de bookmark"
EndProperty
BeginProperty ListImage48 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":BED6
Key = ""
EndProperty
BeginProperty ListImage49 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":C1F2
Key = ""
EndProperty
BeginProperty ListImage50 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":C516
Key = ""
EndProperty
EndProperty
End
Begin VB.Frame fraMain
BackColor = &H00C0C0C0&
BorderStyle = 0 'None
Caption = "Código"
Height = 2775
Index = 4
Left = 660
TabIndex = 21
Top = 3060
Visible = 0 'False
Width = 4035
Begin MSComctlLib.ListView lvwBookmark
Height = 1380
Left = 105
TabIndex = 22
Top = 510
Width = 3570
_ExtentX = 6297
_ExtentY = 2434
View = 3
LabelEdit = 1
LabelWrap = -1 'True
HideSelection = -1 'True
Checkboxes = -1 'True
FullRowSelect = -1 'True
GridLines = -1 'True
_Version = 393217
Icons = "imgTb"
SmallIcons = "imgTb"
ColHdrIcons = "imgTb"
ForeColor = -2147483640
BackColor = -2147483643
BorderStyle = 1
Appearance = 0
NumItems = 2
BeginProperty ColumnHeader(1) {BDD1F052-858B-11D1-B16A-00C0F0283628}
Text = "Nº"
Object.Width = 2117
EndProperty
BeginProperty ColumnHeader(2) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 1
Text = "Descripción de código"
Object.Width = 12347
EndProperty
End
End
Begin VB.Timer timTimer
Enabled = 0 'False
Interval = 5
Left = 4065
Top = 1260
End
Begin VB.Frame fraMain
BorderStyle = 0 'None
Caption = "Itemes"
Height = 2955
Index = 3
Left = 2250
TabIndex = 15
Top = 2460
Visible = 0 'False
Width = 4410
Begin VB.ComboBox cboAddress
Height = 315
Left = 855
TabIndex = 17
Top = 480
Width = 3795
End
Begin MSComctlLib.Toolbar tbToolBar
Height = 450
Left = 0
TabIndex = 16
Top = 0
Width = 6540
_ExtentX = 11536
_ExtentY = 794
ButtonWidth = 820
ButtonHeight = 794
Style = 1
ImageList = "imlIcons"
_Version = 393216
BeginProperty Buttons {66833FE8-8583-11D1-B16A-00C0F0283628}
NumButtons = 6
BeginProperty Button1 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "Back"
Object.ToolTipText = "Atrás"
ImageIndex = 1
EndProperty
BeginProperty Button2 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "Forward"
Object.ToolTipText = "Adelante"
ImageIndex = 2
EndProperty
BeginProperty Button3 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "Stop"
Object.ToolTipText = "Detener"
ImageIndex = 3
EndProperty
BeginProperty Button4 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "Refresh"
Object.ToolTipText = "Actualizar"
ImageIndex = 4
EndProperty
BeginProperty Button5 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "Home"
Object.ToolTipText = "Inicio"
ImageIndex = 5
EndProperty
BeginProperty Button6 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "Search"
Object.ToolTipText = "Búsqueda"
ImageIndex = 6
EndProperty
EndProperty
End
Begin SHDocVwCtl.WebBrowser brwWebBrowser
Height = 2025
Left = 45
TabIndex = 19
Top = 855
Width = 2880
ExtentX = 5080
ExtentY = 3572
ViewMode = 1
Offline = 0
Silent = 0
RegisterAsBrowser= 0
RegisterAsDropTarget= 0
AutoArrange = -1 'True
NoClientEdge = -1 'True
AlignLeft = 0 'False
ViewID = "{0057D0E0-3573-11CF-AE69-08002B2E1262}"
Location = ""
End
Begin VB.Label lblAddress
Caption = "&Dirección:"
Height = 255
Left = 60
TabIndex = 18
Tag = "&Dirección:"
Top = 510
Width = 795
End
End
Begin VB.Timer tmrCodigo
Enabled = 0 'False
Interval = 1000
Left = 3270
Top = 1065
End
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 1
Left = 3585
Top = 2010
End
Begin VB.FileListBox filCode
Height = 480
Left = 900
TabIndex = 13
TabStop = 0 'False
Top = 4095
Visible = 0 'False
Width = 1215
End
Begin VB.PictureBox picCat
Appearance = 0 'Flat
BackColor = &H80000005&
ForeColor = &H80000008&
Height = 540
Left = 480
ScaleHeight = 510
ScaleWidth = 2355
TabIndex = 11
Top = 735
Width = 2385
Begin VB.Label lblSeccion
Appearance = 0 'Flat
AutoSize = -1 'True
BackColor = &H80000005&
Caption = "Categorias"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 240
Left = 525
TabIndex = 12
Top = 150
Width = 1155
End
Begin VB.Image Image1
Height = 480
Left = 15
Picture = "frmMain.frx":C83A
Top = 15
Width = 480
End
End
Begin VB.Frame fraMain
BorderStyle = 0 'None
Caption = "Itemes"
Height = 2955
Index = 1
Left = 7365
TabIndex = 7
Top = 2745
Visible = 0 'False
Width = 4410
Begin VB.CommandButton cmdNav
Caption = "<<"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 285
Index = 0
Left = 450
TabIndex = 29
ToolTipText = "Ir a la primera página"
Top = 345
Width = 435
End
Begin VB.CommandButton cmdNav
Caption = "<"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 285
Index = 1
Left = 915
TabIndex = 28
ToolTipText = "Retroceder una página"
Top = 345
Width = 435
End
Begin VB.CommandButton cmdNav
Caption = ">"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 285
Index = 2
Left = 2175
TabIndex = 27
ToolTipText = "Avanzar una página"
Top = 345
Width = 435
End
Begin VB.CommandButton cmdNav
Caption = ">>"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 285
Index = 3
Left = 2640
TabIndex = 26
ToolTipText = "Ir a la última página"
Top = 345
Width = 435
End
Begin VB.TextBox txtNav
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 285
Left = 1380
Locked = -1 'True
MaxLength = 6
TabIndex = 25
ToolTipText = "Ir a página "
Top = 345
Width = 750
End
Begin MSComctlLib.ListView lvwItemes
Height = 1380
Left = 450
TabIndex = 8
Top = 645
Width = 3570
_ExtentX = 6297
_ExtentY = 2434
View = 3
LabelEdit = 1
LabelWrap = -1 'True
HideSelection = -1 'True
Checkboxes = -1 'True
FullRowSelect = -1 'True
GridLines = -1 'True
_Version = 393217
Icons = "imgTb"
SmallIcons = "imgTb"
ColHdrIcons = "imgTb"
ForeColor = -2147483640
BackColor = -2147483643
BorderStyle = 1
Appearance = 0
NumItems = 2
BeginProperty ColumnHeader(1) {BDD1F052-858B-11D1-B16A-00C0F0283628}
Text = "Nº"
Object.Width = 2117
EndProperty
BeginProperty ColumnHeader(2) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 1
Text = "Descripción de código"
Object.Width = 12347
EndProperty
End
Begin VB.Image imgCat
Height = 300
Left = 0
Picture = "frmMain.frx":CC7C
Stretch = -1 'True
Top = 0
Width = 360
End
Begin VB.Label lblDesCat
Appearance = 0 'Flat
BackColor = &H00808080&
Caption = "Categorias"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C0FFFF&
Height = 300
Left = 405
TabIndex = 23
Top = 0
Width = 1110
End
End
Begin MSComctlLib.TabStrip tabMain
Height = 4530
Left = 3180
TabIndex = 5
Top = 825
Width = 4710
_ExtentX = 8308
_ExtentY = 7990
HotTracking = -1 'True
ImageList = "imgTb"
_Version = 393216
BeginProperty Tabs {1EFB6598-857C-11D1-B16A-00C0F0283628}
NumTabs = 4
BeginProperty Tab1 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "&Itemes"
Object.ToolTipText = "Codigo fuente asociado a la seccion"
ImageVarType = 2
ImageIndex = 17
EndProperty
BeginProperty Tab2 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "Código &fuente"
Object.ToolTipText = "Código fuente Visual Basic del item seleccionado"
ImageVarType = 2
ImageIndex = 16
EndProperty
BeginProperty Tab3 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "&Buscar en internet"
Object.ToolTipText = "Buscar código en internet"
ImageVarType = 2
ImageIndex = 41
EndProperty
BeginProperty Tab4 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "&BookMark"
Object.ToolTipText = "Ficha de almacén de selecciones"
ImageVarType = 2
ImageIndex = 44
EndProperty
EndProperty
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin MSComctlLib.ProgressBar pgbStatus
Height = 285
Left = 1215
TabIndex = 4
Top = 5490
Width = 2835
_ExtentX = 5001
_ExtentY = 503
_Version = 393216
Appearance = 0
End
Begin VB.PictureBox Splitter
Appearance = 0 'Flat
AutoRedraw = -1 'True
BorderStyle = 0 'None
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 5445
Left = 4455
MouseIcon = "frmMain.frx":D0BE
MousePointer = 99 'Custom
ScaleHeight = 363
ScaleMode = 3 'Pixel
ScaleWidth = 3
TabIndex = 3
Tag = "0"
Top = 315
Width = 45
End
Begin MSComctlLib.Toolbar tlbMain
Align = 1 'Align Top
Height = 360
Left = 0
TabIndex = 1
Top = 0
Width = 12060
_ExtentX = 21273
_ExtentY = 635
ButtonWidth = 609
ButtonHeight = 582
AllowCustomize = 0 'False
Appearance = 1
Style = 1
ImageList = "imgTb"
_Version = 393216
BeginProperty Buttons {66833FE8-8583-11D1-B16A-00C0F0283628}
NumButtons = 29
BeginProperty Button1 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button2 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdEliItem"
Object.ToolTipText = "Eliminar item"
ImageIndex = 1
EndProperty
BeginProperty Button3 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdAddItem"
Object.ToolTipText = "Agregar item"
ImageIndex = 2
EndProperty
BeginProperty Button4 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button5 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdSave"
Object.ToolTipText = "Respaldar libreria de código"
ImageIndex = 24
EndProperty
BeginProperty Button6 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdActualizar"
Object.ToolTipText = "Actualizar información de libreria"
ImageIndex = 22
EndProperty
BeginProperty Button7 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button8 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdCortar"
Object.ToolTipText = "Pegar"
ImageIndex = 11
EndProperty
BeginProperty Button9 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdCopiar"
Object.ToolTipText = "Copiar codigo del item"
ImageIndex = 10
EndProperty
BeginProperty Button10 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdPegar"
Object.ToolTipText = "Pegar"
ImageIndex = 13
EndProperty
BeginProperty Button11 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdBuscar"
Object.ToolTipText = "Buscar codigo en libreria"
ImageIndex = 9
EndProperty
BeginProperty Button12 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button13 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdImprimir"
Object.ToolTipText = "Imprimir codigo"
ImageIndex = 8
EndProperty
BeginProperty Button14 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button15 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdTexto"
Object.ToolTipText = "Exportar codigo a texto"
ImageIndex = 31
EndProperty
BeginProperty Button16 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdRtf"
Object.ToolTipText = "Exportar codigo a rtf"
ImageIndex = 19
EndProperty
BeginProperty Button17 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdHtml"
Object.ToolTipText = "Exportar codigo a html"
ImageIndex = 32
EndProperty
BeginProperty Button18 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button19 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdBas"
Object.ToolTipText = "Importar módulo .bas"
ImageIndex = 3
EndProperty
BeginProperty Button20 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdCls"
Object.ToolTipText = "Importar módulo .cls"
ImageIndex = 5
EndProperty
BeginProperty Button21 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdForm"
Object.ToolTipText = "Importar formulario"
ImageIndex = 27
EndProperty
BeginProperty Button22 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdCtl"
Object.ToolTipText = "Importar control de usuario"
ImageIndex = 28
EndProperty
BeginProperty Button23 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdPag"
Object.ToolTipText = "Importar página de propiedades"
ImageIndex = 29
EndProperty
BeginProperty Button24 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdVbp"
Object.ToolTipText = "Importar proyecto"
ImageIndex = 30
EndProperty
BeginProperty Button25 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button26 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdWeb"
Object.ToolTipText = "Ir al sitio web de vbsoftware"
ImageIndex = 7
EndProperty
BeginProperty Button27 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdAyuda"
Object.ToolTipText = "Ayuda"
ImageIndex = 6
EndProperty
BeginProperty Button28 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button29 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "cmdSalir"
Object.ToolTipText = "Salir de la aplicacion"
ImageIndex = 4
EndProperty
EndProperty
End
Begin VB.PictureBox picMain
Appearance = 0 'Flat
AutoRedraw = -1 'True
BackColor = &H80000005&
ForeColor = &H00C0FFFF&
Height = 4725
Left = 0
ScaleHeight = 313
ScaleMode = 3 'Pixel
ScaleWidth = 22
TabIndex = 0
Top = 705
Width = 360
End
Begin MSComctlLib.StatusBar stbMain
Align = 2 'Align Bottom
Height = 315
Left = 0
TabIndex = 2
Top = 5835
Width = 12060
_ExtentX = 21273
_ExtentY = 556
_Version = 393216
BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628}
NumPanels = 5
BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Object.Width = 7937
MinWidth = 7937
EndProperty
BeginProperty Panel2 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Object.Width = 1587
MinWidth = 1587
EndProperty
BeginProperty Panel3 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Object.Width = 3969
MinWidth = 3969
EndProperty
BeginProperty Panel4 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Object.Width = 1058
MinWidth = 1058
EndProperty
BeginProperty Panel5 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Object.Width = 7937
MinWidth = 7937
EndProperty
EndProperty
End
Begin MSComctlLib.ListView lvwCat
Height = 2025
Left = 495
TabIndex = 6
Top = 1350
Width = 2340