-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.lfm
2250 lines (2250 loc) · 103 KB
/
main.lfm
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 fMian: TfMian
Left = 281
Height = 441
Top = 154
Width = 853
Caption = 'Lpro 1.5.0 - Проверка лицензий установленных программ'
ClientHeight = 421
ClientWidth = 853
Menu = MainMenu1
OnClose = FormClose
OnCreate = FormCreate
OnResize = FormResize
PopupMenu = PopupMenu1
Position = poScreenCenter
LCLVersion = '2.0.2.0'
object ToolBar1: TToolBar
Left = 0
Height = 26
Top = 0
Width = 853
AutoSize = True
Caption = 'ToolBar1'
EdgeBorders = [ebLeft, ebTop, ebRight, ebBottom]
Images = ImageList1
ParentShowHint = False
ShowHint = True
TabOrder = 0
object panExit: TToolButton
Left = 3
Hint = 'Выход из программы'
Top = 2
Caption = 'Выход'
ImageIndex = 15
MenuItem = mExit
end
object panExportCSV: TToolButton
Left = 34
Hint = 'Экспорт в CSV'
Top = 2
Caption = 'Экспорт в CSV'
ImageIndex = 17
MenuItem = mExport
end
object panExportHTML: TToolButton
Left = 57
Hint = 'Экспорт в HTML'
Top = 2
Caption = 'Экспорт в HTML'
ImageIndex = 18
MenuItem = mExportHTML
end
object panPeredatExcel: TToolButton
Left = 80
Hint = 'Передать в Excel'
Top = 2
Caption = 'Передать в Excel'
ImageIndex = 16
MenuItem = mPeredatExcel
end
object ToolButton1: TToolButton
Left = 26
Height = 22
Top = 2
Caption = 'ToolButton1'
Style = tbsSeparator
end
object ToolButton2: TToolButton
Left = 126
Height = 22
Top = 2
Caption = 'ToolButton2'
Style = tbsSeparator
end
object panBeginSerch: TToolButton
Left = 134
Hint = 'Начать поиск'
Top = 2
Caption = 'Начать поиск'
ImageIndex = 7
MenuItem = mBeginSerch
end
object panOchistit: TToolButton
Left = 157
Hint = 'Очистить таблицу'
Top = 2
Caption = 'Очистить'
ImageIndex = 9
MenuItem = mOchistit
end
object panPoiskVBaze: TToolButton
Left = 180
Hint = 'Поиск в базе'
Top = 2
Caption = 'Поиск в базе'
ImageIndex = 19
MenuItem = mPoiskVBaze
end
object panPodborZameni: TToolButton
Left = 203
Hint = 'Подобрать замену'
Top = 2
Caption = 'Подобрать замену'
ImageIndex = 23
MenuItem = mPodborZameni
end
object ToolButton3: TToolButton
Left = 249
Height = 22
Top = 2
Caption = 'ToolButton3'
Style = tbsSeparator
end
object panSort00: TToolButton
Left = 257
Hint = 'Сортировать по названию'
Top = 2
Caption = 'Сортировать по названию'
ImageIndex = 2
MenuItem = mSort00
end
object panSort01: TToolButton
Left = 280
Hint = 'Сортировать по типу'
Top = 2
Caption = 'Сортировать по типу'
ImageIndex = 3
MenuItem = mSort01
end
object panSort02: TToolButton
Left = 303
Hint = 'Сортировать по лицензии'
Top = 2
Caption = 'Сортировать по лицензии'
ImageIndex = 1
MenuItem = mSort02
end
object panSort03: TToolButton
Left = 326
Hint = 'Сортировать по стоимости'
Top = 2
Caption = 'Сортировать по стоимости'
ImageIndex = 5
MenuItem = mSort03
end
object panSort04: TToolButton
Left = 349
Hint = 'Сортировать по замене'
Top = 2
Caption = 'Сортировать по замене'
ImageIndex = 4
MenuItem = mSort04
end
object ToolButton4: TToolButton
Left = 372
Height = 22
Top = 2
Caption = 'ToolButton4'
Style = tbsSeparator
end
object panAbout: TToolButton
Left = 403
Hint = 'О программе'
Top = 2
Caption = 'О программе'
ImageIndex = 24
MenuItem = mAbout
end
object panUpdateCheck: TToolButton
Left = 426
Hint = 'Проверить обновление'
Top = 2
Caption = 'Проверить обновление'
ImageIndex = 21
MenuItem = mUpdateCheck
end
object panHelp: TToolButton
Left = 380
Hint = 'Справка'
Top = 2
Caption = 'Справка'
ImageIndex = 0
MenuItem = mHelp
end
object ToolButton5: TToolButton
Left = 226
Top = 2
Caption = 'Настройки'
ImageIndex = 27
MenuItem = mSettings
end
object panExpLibre: TToolButton
Left = 103
Hint = 'Передача в LibreOffice'
Top = 2
Caption = 'Передача в LibreOffice'
ImageIndex = 28
MenuItem = mPeredatLibreOffice
end
end
object PageControl1: TPageControl
Left = 0
Height = 395
Top = 26
Width = 853
ActivePage = AvtoPoiskPage
Align = alClient
Images = ImageList1
ParentBiDiMode = False
TabIndex = 0
TabOrder = 1
TabPosition = tpBottom
OnChange = PageControl1Change
object AvtoPoiskPage: TTabSheet
Caption = 'Автопоиск'
ClientHeight = 367
ClientWidth = 845
ImageIndex = 7
OnContextPopup = AvtoPoiskPageContextPopup
object DBGrid1: TDBGrid
Left = 0
Height = 215
Top = 0
Width = 845
Align = alClient
Color = clWindow
Columns = <>
DataSource = DataSource1
Options = [dgTitles, dgIndicator, dgColumnResize, dgColumnMove, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgCancelOnExit, dgAutoSizeColumns, dgDisableDelete, dgDisableInsert]
ReadOnly = True
TabOrder = 0
OnCellClick = DBGrid1CellClick
OnDrawColumnCell = DBGrid1DrawColumnCell
OnTitleClick = DBGrid1TitleClick
end
object Memo1: TMemo
Left = 200
Height = 80
Top = 8
Width = 118
Lines.Strings = (
'Memo1'
)
TabOrder = 1
Visible = False
end
object bSearch: TButton
Left = 232
Height = 68
Hint = 'Начать поиск программ'
Top = 72
Width = 346
Anchors = [akTop, akLeft, akRight, akBottom]
Caption = 'Начать поиск'
Font.Height = -17
Font.Name = 'Times New Roman'
OnClick = mBeginSerchClick
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 2
end
object PageControl2: TPageControl
Left = 0
Height = 152
Top = 215
Width = 845
ActivePage = tsPodrobnosti
Align = alBottom
TabIndex = 0
TabOrder = 3
object tsPodrobnosti: TTabSheet
Caption = 'Основное'
ClientHeight = 124
ClientWidth = 837
object leNamePodrob: TLabeledEdit
Left = 0
Height = 23
Top = 16
Width = 176
EditLabel.Height = 15
EditLabel.Width = 176
EditLabel.Caption = 'Название из БД'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 0
end
object leIshName: TLabeledEdit
Left = 184
Height = 23
Top = 16
Width = 232
EditLabel.Height = 15
EditLabel.Width = 232
EditLabel.Caption = 'Исходное название'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 1
end
object leKluchPodrob: TLabeledEdit
Left = 0
Height = 23
Top = 56
Width = 584
EditLabel.Height = 15
EditLabel.Width = 584
EditLabel.Caption = 'Ключ реестра'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 2
OnChange = leKluchPodrobChange
end
object leKatalogPodrob: TLabeledEdit
Left = 0
Height = 23
Top = 96
Width = 264
EditLabel.Height = 15
EditLabel.Width = 264
EditLabel.Caption = 'Каталог'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 3
end
object bOpenKatPodrob: TButton
Left = 272
Height = 25
Top = 94
Width = 107
Caption = 'Открыть каталог'
Enabled = False
OnClick = bOpenKatPodrobClick
TabOrder = 4
end
object leVersionPodrob: TLabeledEdit
Left = 424
Height = 23
Top = 16
Width = 72
EditLabel.Height = 15
EditLabel.Width = 72
EditLabel.Caption = 'Версия'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 5
end
object leRazrabPodrob: TLabeledEdit
Left = 392
Height = 23
Top = 96
Width = 136
EditLabel.Height = 15
EditLabel.Width = 136
EditLabel.Caption = 'Разработчик'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 6
end
object leInstallDatePodrob: TLabeledEdit
Left = 504
Height = 23
Top = 16
Width = 88
EditLabel.Height = 15
EditLabel.Width = 88
EditLabel.Caption = 'Дата установки'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 7
end
object leTypePoPodrob: TLabeledEdit
Left = 680
Height = 23
Top = 56
Width = 152
EditLabel.Height = 15
EditLabel.Width = 152
EditLabel.Caption = 'Тип ПО'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 8
end
object leLicensePodrob: TLabeledEdit
Left = 600
Height = 23
Top = 16
Width = 96
EditLabel.Height = 15
EditLabel.Width = 96
EditLabel.Caption = 'Лицензия'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 9
end
object leStoimostPodrob: TLabeledEdit
Left = 704
Height = 23
Top = 16
Width = 72
EditLabel.Height = 15
EditLabel.Width = 72
EditLabel.Caption = 'Стоимость'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 10
end
object cbZamenaPodrob: TComboBox
Left = 536
Height = 23
Top = 96
Width = 116
Enabled = False
ItemHeight = 15
Style = csDropDownList
TabOrder = 11
end
object bViewZamPodrob: TButton
Left = 664
Height = 25
Top = 94
Width = 120
Caption = 'Посмотреть замену'
Enabled = False
OnClick = bViewZamPodrobClick
TabOrder = 12
end
object lAvtoPodrobZamena: TLabel
Left = 536
Height = 15
Top = 80
Width = 41
Caption = 'Замена'
ParentColor = False
end
object leIDPodrob: TLabeledEdit
Left = 784
Height = 23
Top = 16
Width = 48
EditLabel.Height = 15
EditLabel.Width = 48
EditLabel.Caption = 'ID в базе'
EditLabel.ParentColor = False
TabOrder = 13
end
object bAvtoDel: TButton
Left = 592
Height = 25
Top = 56
Width = 75
Caption = 'Удалить'
OnClick = bAvtoDelClick
TabOrder = 14
end
end
object tsLicenseSogl: TTabSheet
Caption = 'Лицензионное соглашение (0)'
ClientHeight = 124
ClientWidth = 837
object ComboBox1: TComboBox
Left = 0
Height = 23
Top = 0
Width = 837
Align = alTop
ItemHeight = 15
OnChange = ComboBox1Change
TabOrder = 0
end
object RichMemo1: TRichMemo
Left = 0
Height = 101
Top = 23
Width = 837
Align = alClient
HideSelection = False
ReadOnly = True
ScrollBars = ssAutoVertical
TabOrder = 1
ZoomFactor = 1
end
end
object tsVseVarianti: TTabSheet
Caption = 'Все варианты (0)'
ClientHeight = 124
ClientWidth = 837
object DBGridAllVar: TDBGrid
Left = 0
Height = 124
Top = 0
Width = 837
Align = alClient
Color = clWindow
Columns = <>
DataSource = DataSourceAllVar
ReadOnly = True
TabOrder = 0
end
end
object tsPodtver: TTabSheet
Caption = 'Подтверждение'
ClientHeight = 124
ClientWidth = 837
object lePodtvGde: TLabeledEdit
Left = 0
Height = 23
Top = 96
Width = 440
EditLabel.Height = 15
EditLabel.Width = 440
EditLabel.Caption = 'Где найдено:'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 0
end
object lePodtvCheIshu: TLabeledEdit
Left = 0
Height = 23
Top = 16
Width = 208
EditLabel.Height = 15
EditLabel.Width = 208
EditLabel.Caption = 'Искомый файл:'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 1
end
object lePodtvGdeIskat: TLabeledEdit
Left = 0
Height = 23
Top = 56
Width = 280
EditLabel.Height = 15
EditLabel.Width = 280
EditLabel.Caption = 'Где искать (данные из реестра)'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 2
end
end
end
end
object RuchPoiskPage: TTabSheet
Caption = 'Ручной поиск'
ClientHeight = 367
ClientWidth = 845
ImageIndex = 22
object DBGrid2: TDBGrid
Left = 0
Height = 335
Top = 32
Width = 845
Align = alClient
Color = clWindow
Columns = <>
DataSource = DataSource3
ReadOnly = True
Scrollbars = ssAutoBoth
TabOrder = 0
OnDrawColumnCell = DBGrid2DrawColumnCell
OnTitleClick = DBGrid2TitleClick
end
object Panel1: TPanel
Left = 0
Height = 32
Top = 0
Width = 845
Align = alTop
ClientHeight = 32
ClientWidth = 845
TabOrder = 1
object leKatalogSearch: TLabeledEdit
Left = 120
Height = 23
Top = 0
Width = 320
EditLabel.Height = 15
EditLabel.Width = 107
EditLabel.Caption = 'Каталог для поиска'
EditLabel.ParentColor = False
LabelPosition = lpLeft
ParentBidiMode = False
TabOrder = 0
OnChange = leKatalogSearchChange
end
object bRuchPoisk: TButton
Left = 456
Height = 25
Top = 0
Width = 75
Caption = 'Поиск'
OnClick = bRuchPoiskClick
TabOrder = 1
end
object bUkazKatalog: TButton
Left = 544
Height = 25
Top = 0
Width = 104
Caption = 'Указать каталог'
OnClick = bUkazKatalogClick
TabOrder = 2
end
end
end
object InstallPoPage: TTabSheet
Caption = 'Установленное ПО'
ClientHeight = 367
ClientWidth = 845
ImageIndex = 25
object ListBox1: TListBox
Left = 0
Height = 367
Top = 0
Width = 232
Align = alLeft
ItemHeight = 0
OnSelectionChange = ListBox1SelectionChange
TabOrder = 0
end
object PanelInstalled: TPanel
Left = 240
Height = 236
Top = 8
Width = 607
Anchors = [akTop, akLeft, akRight, akBottom]
ClientHeight = 236
ClientWidth = 607
TabOrder = 1
object rVetkaReestra: TRadioGroup
Left = 0
Height = 41
Top = 0
Width = 184
AutoFill = True
Caption = 'Ветка реестра'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 2
ClientHeight = 21
ClientWidth = 180
Columns = 2
ItemIndex = 0
Items.Strings = (
'32-бит'
'64-бит'
)
OnSelectionChanged = rVetkaReestraSelectionChanged
ParentBidiMode = False
TabOrder = 0
end
object leFullPathKey: TLabeledEdit
Left = 0
Height = 23
Top = 64
Width = 544
EditLabel.Height = 15
EditLabel.Width = 544
EditLabel.Caption = 'Полный путь ключа'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 1
end
object leKeyName: TLabeledEdit
Left = 0
Height = 23
Top = 104
Width = 168
EditLabel.Height = 15
EditLabel.Width = 168
EditLabel.Caption = 'Название ключа'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 2
end
object leDisplayName: TLabeledEdit
Left = 176
Height = 23
Top = 104
Width = 208
EditLabel.Height = 15
EditLabel.Width = 208
EditLabel.Caption = 'Название программы'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 3
end
object leVersionProg: TLabeledEdit
Left = 400
Height = 23
Top = 104
Width = 88
EditLabel.Height = 15
EditLabel.Width = 88
EditLabel.Caption = 'Версия'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 4
end
object leRazrab: TLabeledEdit
Left = 0
Height = 23
Top = 144
Width = 192
EditLabel.Height = 15
EditLabel.Width = 192
EditLabel.Caption = 'Разработчик'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 5
end
object leKatalog: TLabeledEdit
Left = 0
Height = 23
Top = 192
Width = 408
EditLabel.Height = 15
EditLabel.Width = 408
EditLabel.Caption = 'Каталог'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 6
end
object bExplorer: TButton
Left = 424
Height = 25
Top = 192
Width = 99
Caption = 'Открыть каталог'
OnClick = bExplorerClick
TabOrder = 7
end
object leInstallDate: TLabeledEdit
Left = 200
Height = 23
Top = 144
Width = 88
EditLabel.Height = 15
EditLabel.Width = 88
EditLabel.Caption = 'Дата установки'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 8
end
object bRegedit: TButton
Left = 200
Height = 25
Top = 8
Width = 75
Caption = 'Regedit'
Enabled = False
OnClick = bRegeditClick
TabOrder = 9
end
object bDeinstrall: TButton
Left = 288
Height = 25
Top = 8
Width = 115
Caption = 'Деинсталлировать'
OnClick = bDeinstrallClick
TabOrder = 10
end
object cbInstallZam: TComboBox
Left = 307
Height = 23
Top = 144
Width = 101
ItemHeight = 15
TabOrder = 11
end
object lZamena: TLabel
Left = 312
Height = 15
Top = 128
Width = 41
Caption = 'Замена'
ParentColor = False
end
object bInstViewZam: TButton
Left = 424
Height = 25
Top = 144
Width = 120
Caption = 'Посмотреть замену'
OnClick = bInstViewZamClick
TabOrder = 12
end
object bInstpoSokrtiZapros: TButton
Left = 416
Height = 25
Top = 8
Width = 120
Caption = 'Сократить запрос'
OnClick = bInstpoSokrtiZaprosClick
TabOrder = 13
end
end
object DBGrid3: TDBGrid
Left = 232
Height = 137
Top = 231
Width = 615
Anchors = [akTop, akLeft, akRight]
Color = clWindow
Columns = <>
DataSource = DataSource4
ReadOnly = True
TabOrder = 2
end
end
object MediaPoisk: TTabSheet
Caption = 'Медиа поиск'
ClientHeight = 367
ClientWidth = 845
ImageIndex = 29
object Panel2: TPanel
Left = 0
Height = 32
Top = 0
Width = 845
Align = alTop
ClientHeight = 32
ClientWidth = 845
TabOrder = 0
object leKatMediaSearch: TLabeledEdit
Left = 120
Height = 23
Top = 0
Width = 320
EditLabel.Height = 15
EditLabel.Width = 107
EditLabel.Caption = 'Каталог для поиска'
EditLabel.ParentColor = False
LabelPosition = lpLeft
ParentBidiMode = False
TabOrder = 0
OnChange = leKatalogSearchChange
end
object bMediaPoisk: TButton
Left = 456
Height = 25
Top = 0
Width = 75
Caption = 'Поиск'
OnClick = bMediaPoiskClick
TabOrder = 1
end
object bUkazKatalogMedia: TButton
Left = 544
Height = 25
Top = 0
Width = 104
Caption = 'Указать каталог'
OnClick = bUkazKatalogMediaClick
TabOrder = 2
end
end
object DBGrid4: TDBGrid
Left = 0
Height = 335
Top = 32
Width = 845
Align = alClient
Color = clWindow
Columns = <>
DataSource = DataSourceMedia
ReadOnly = True
TabOrder = 1
OnTitleClick = DBGrid4TitleClick
end
end
end
object ProgressBar1: TProgressBar
Left = 632
Height = 24
Top = 396
Width = 133
Anchors = [akRight, akBottom]
TabOrder = 2
end
object lProgress: TLabel
Left = 784
Height = 21
Top = 400
Width = 46
Anchors = [akLeft, akBottom]
Caption = 'Готов'
Font.CharSet = RUSSIAN_CHARSET
Font.Height = -19
Font.Name = 'Times New Roman'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
ParentShowHint = False
Visible = False
end
object MainMenu1: TMainMenu
Images = ImageList1
left = 112
top = 48
object mFile: TMenuItem
Caption = 'Файл'
ImageIndex = 11
object mCopy: TMenuItem
Caption = 'Копировать выделение'
ImageIndex = 8
Visible = False
OnClick = pCopyClick
end
object mExport: TMenuItem
Caption = 'Экспорт в CSV'
Hint = 'Экспорт в CSV'
ImageIndex = 17
OnClick = mExportClick
end
object mExportHTML: TMenuItem
Caption = 'Экспорт в HTML'
Hint = 'Экспорт в HTML'
ImageIndex = 18
OnClick = mExportHTMLClick
end
object mPeredatExcel: TMenuItem
Caption = 'Передать в Excel'
Hint = 'Передать в Excel'
ImageIndex = 16
OnClick = mPeredatExcelClick
end
object mPeredatLibreOffice: TMenuItem
Caption = 'Передача в LibreOffice'
Hint = 'Передача в LibreOffice'
ImageIndex = 28
OnClick = mPeredatLibreOfficeClick
end
object mExit: TMenuItem
Caption = 'Выход'
Hint = 'Выход из программы'
ImageIndex = 15
OnClick = mExitClick
end
end
object mSearch: TMenuItem
Caption = 'Поиск'
ImageIndex = 6
object mBeginSerch: TMenuItem
Caption = 'Начать поиск'
Hint = 'Начать поиск'
ImageIndex = 7
OnClick = mBeginSerchClick
end
object mOchistit: TMenuItem
Caption = 'Очистить'
Hint = 'Очистить таблицу'
ImageIndex = 9
OnClick = mOchistitClick
end
object mPoiskVBaze: TMenuItem
Caption = 'Поиск в базе'
Hint = 'Поиск в базе'
ImageIndex = 19
OnClick = mPoiskVBazeClick
end
object mPodborZameni: TMenuItem
Caption = 'Подобрать замену'
Hint = 'Подобрать замену'
ImageIndex = 23
OnClick = mPodborZameniClick
end
object mSettings: TMenuItem
Caption = 'Настройки'
ImageIndex = 27
OnClick = mSettingsClick
end
end
object mVid: TMenuItem
Caption = 'Вид'
ImageIndex = 13
object mShrift: TMenuItem
Caption = 'Шрифт'
Hint = 'Шрифт'
ImageIndex = 13
OnClick = mShriftClick
end
object mSort00: TMenuItem
Caption = 'Сортировать по названию'
Hint = 'Сортировать по названию'
ImageIndex = 2
OnClick = mSort00Click
end
object mSort01: TMenuItem
Caption = 'Сортировать по типу'
Hint = 'Сортировать по типу'
ImageIndex = 3
OnClick = mSort01Click
end
object mSort02: TMenuItem