-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.lfm.bak
3461 lines (3461 loc) · 195 KB
/
main.lfm.bak
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 = 275
Height = 445
Top = 174
Width = 853
Caption = 'Lpro 1.4.1 - Проверка лицензий установленных программ'
ClientHeight = 425
ClientWidth = 853
Menu = MainMenu1
OnClose = FormClose
OnCreate = FormCreate
PopupMenu = PopupMenu1
Position = poDesktopCenter
LCLVersion = '1.6.0.4'
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
Width = 8
Caption = 'ToolButton1'
Style = tbsSeparator
end
object ToolButton2: TToolButton
Left = 103
Height = 22
Top = 2
Width = 8
Caption = 'ToolButton2'
Style = tbsSeparator
end
object panBeginSerch: TToolButton
Left = 111
Hint = 'Начать поиск'
Top = 2
Caption = 'Начать поиск'
ImageIndex = 7
MenuItem = mBeginSerch
end
object panOchistit: TToolButton
Left = 134
Hint = 'Очистить таблицу'
Top = 2
Caption = 'Очистить'
ImageIndex = 9
MenuItem = mOchistit
end
object panPoiskVBaze: TToolButton
Left = 157
Hint = 'Поиск в базе'
Top = 2
Caption = 'Поиск в базе'
ImageIndex = 19
MenuItem = mPoiskVBaze
end
object panPodborZameni: TToolButton
Left = 180
Hint = 'Подобрать замену'
Top = 2
Caption = 'Подобрать замену'
ImageIndex = 23
MenuItem = mPodborZameni
end
object ToolButton3: TToolButton
Left = 203
Height = 22
Top = 2
Width = 8
Caption = 'ToolButton3'
Style = tbsSeparator
end
object panSort00: TToolButton
Left = 211
Hint = 'Сортировать по названию'
Top = 2
Caption = 'Сортировать по названию'
ImageIndex = 2
MenuItem = mSort00
end
object panSort01: TToolButton
Left = 234
Hint = 'Сортировать по типу'
Top = 2
Caption = 'Сортировать по типу'
ImageIndex = 3
MenuItem = mSort01
end
object panSort02: TToolButton
Left = 257
Hint = 'Сортировать по лицензии'
Top = 2
Caption = 'Сортировать по лицензии'
ImageIndex = 1
MenuItem = mSort02
end
object panSort03: TToolButton
Left = 280
Hint = 'Сортировать по стоимости'
Top = 2
Caption = 'Сортировать по стоимости'
ImageIndex = 5
MenuItem = mSort03
end
object panSort04: TToolButton
Left = 303
Hint = 'Сортировать по замене'
Top = 2
Caption = 'Сортировать по замене'
ImageIndex = 4
MenuItem = mSort04
end
object ToolButton4: TToolButton
Left = 326
Height = 22
Top = 2
Width = 8
Caption = 'ToolButton4'
Style = tbsSeparator
end
object panAbout: TToolButton
Left = 357
Hint = 'О программе'
Top = 2
Caption = 'О программе'
ImageIndex = 24
MenuItem = mAbout
end
object panUpdateCheck: TToolButton
Left = 380
Hint = 'Проверить обновление'
Top = 2
Caption = 'Проверить обновление'
ImageIndex = 21
MenuItem = mUpdateCheck
end
object panHelp: TToolButton
Left = 334
Hint = 'Справка'
Top = 2
Caption = 'Справка'
ImageIndex = 0
MenuItem = mHelp
end
end
object PageControl1: TPageControl
Left = 0
Height = 399
Top = 26
Width = 853
ActivePage = RuchPoiskPage
Align = alClient
Images = ImageList1
ParentBiDiMode = False
TabIndex = 1
TabOrder = 1
TabPosition = tpBottom
OnChange = PageControl1Change
object AvtoPoiskPage: TTabSheet
Caption = 'Автопоиск'
ClientHeight = 371
ClientWidth = 845
ImageIndex = 7
OnContextPopup = AvtoPoiskPageContextPopup
object DBGrid1: TDBGrid
Left = 0
Height = 219
Top = 0
Width = 845
Align = alClient
Color = clWindow
Columns = <>
DataSource = DataSource1
Options = [dgTitles, dgIndicator, dgColumnResize, dgColumnMove, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgAlwaysShowSelection, dgConfirmDelete, dgCancelOnExit, dgAutoSizeColumns]
ReadOnly = True
TabOrder = 0
OnCellClick = DBGrid1CellClick
OnDrawColumnCell = DBGrid1DrawColumnCell
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 = 72
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 = 219
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 = 184
EditLabel.AnchorSideLeft.Control = leNamePodrob
EditLabel.AnchorSideRight.Control = leNamePodrob
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leNamePodrob
EditLabel.Left = 0
EditLabel.Height = 15
EditLabel.Top = -2
EditLabel.Width = 184
EditLabel.Caption = 'Название из БД'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 0
end
object leIshName: TLabeledEdit
Left = 192
Height = 23
Top = 16
Width = 256
EditLabel.AnchorSideLeft.Control = leIshName
EditLabel.AnchorSideRight.Control = leIshName
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leIshName
EditLabel.Left = 192
EditLabel.Height = 15
EditLabel.Top = -2
EditLabel.Width = 256
EditLabel.Caption = 'Исходное название'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 1
end
object leKluchPodrob: TLabeledEdit
Left = 0
Height = 23
Top = 56
Width = 584
EditLabel.AnchorSideLeft.Control = leKluchPodrob
EditLabel.AnchorSideRight.Control = leKluchPodrob
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leKluchPodrob
EditLabel.Left = 0
EditLabel.Height = 15
EditLabel.Top = 38
EditLabel.Width = 584
EditLabel.Caption = 'Ключ реестра'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 2
end
object leKatalogPodrob: TLabeledEdit
Left = 0
Height = 23
Top = 96
Width = 264
EditLabel.AnchorSideLeft.Control = leKatalogPodrob
EditLabel.AnchorSideRight.Control = leKatalogPodrob
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leKatalogPodrob
EditLabel.Left = 0
EditLabel.Height = 15
EditLabel.Top = 78
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 = 456
Height = 23
Top = 16
Width = 72
EditLabel.AnchorSideLeft.Control = leVersionPodrob
EditLabel.AnchorSideRight.Control = leVersionPodrob
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leVersionPodrob
EditLabel.Left = 456
EditLabel.Height = 15
EditLabel.Top = -2
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.AnchorSideLeft.Control = leRazrabPodrob
EditLabel.AnchorSideRight.Control = leRazrabPodrob
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leRazrabPodrob
EditLabel.Left = 392
EditLabel.Height = 15
EditLabel.Top = 78
EditLabel.Width = 136
EditLabel.Caption = 'Разработчик'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 6
end
object leInstallDatePodrob: TLabeledEdit
Left = 536
Height = 23
Top = 16
Width = 88
EditLabel.AnchorSideLeft.Control = leInstallDatePodrob
EditLabel.AnchorSideRight.Control = leInstallDatePodrob
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leInstallDatePodrob
EditLabel.Left = 536
EditLabel.Height = 15
EditLabel.Top = -2
EditLabel.Width = 88
EditLabel.Caption = 'Дата установки'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 7
end
object leTypePoPodrob: TLabeledEdit
Left = 592
Height = 23
Top = 56
Width = 152
EditLabel.AnchorSideLeft.Control = leTypePoPodrob
EditLabel.AnchorSideRight.Control = leTypePoPodrob
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leTypePoPodrob
EditLabel.Left = 592
EditLabel.Height = 15
EditLabel.Top = 38
EditLabel.Width = 152
EditLabel.Caption = 'Тип ПО'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 8
end
object leLicensePodrob: TLabeledEdit
Left = 632
Height = 23
Top = 16
Width = 112
EditLabel.AnchorSideLeft.Control = leLicensePodrob
EditLabel.AnchorSideRight.Control = leLicensePodrob
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leLicensePodrob
EditLabel.Left = 632
EditLabel.Height = 15
EditLabel.Top = -2
EditLabel.Width = 112
EditLabel.Caption = 'Лицензия'
EditLabel.ParentColor = False
ReadOnly = True
TabOrder = 9
end
object leStoimostPodrob: TLabeledEdit
Left = 752
Height = 23
Top = 16
Width = 80
EditLabel.AnchorSideLeft.Control = leStoimostPodrob
EditLabel.AnchorSideRight.Control = leStoimostPodrob
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leStoimostPodrob
EditLabel.Left = 752
EditLabel.Height = 15
EditLabel.Top = -2
EditLabel.Width = 80
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
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
end
end
object RuchPoiskPage: TTabSheet
Caption = 'Ручной поиск'
ClientHeight = 371
ClientWidth = 845
ImageIndex = 22
object DBGrid2: TDBGrid
Left = 0
Height = 339
Top = 32
Width = 845
Align = alClient
Color = clWindow
Columns = <>
DataSource = DataSource3
TabOrder = 0
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.AnchorSideTop.Control = leKatalogSearch
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = leKatalogSearch
EditLabel.AnchorSideBottom.Control = leKatalogSearch
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 10
EditLabel.Height = 15
EditLabel.Top = 4
EditLabel.Width = 107
EditLabel.Caption = 'Каталог для поиска'
EditLabel.ParentColor = False
LabelPosition = lpLeft
ParentBidiMode = False
TabOrder = 0
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 = 371
ClientWidth = 845
ImageIndex = 25
object ListBox1: TListBox
Left = 0
Height = 371
Top = 0
Width = 232
Align = alLeft
ItemHeight = 0
OnSelectionChange = ListBox1SelectionChange
TabOrder = 0
end
object PanelInstalled: TPanel
Left = 240
Height = 240
Top = 8
Width = 607
Anchors = [akTop, akLeft, akRight, akBottom]
ClientHeight = 240
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.AnchorSideLeft.Control = leFullPathKey
EditLabel.AnchorSideRight.Control = leFullPathKey
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leFullPathKey
EditLabel.Left = 0
EditLabel.Height = 15
EditLabel.Top = 46
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.AnchorSideLeft.Control = leKeyName
EditLabel.AnchorSideRight.Control = leKeyName
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leKeyName
EditLabel.Left = 0
EditLabel.Height = 15
EditLabel.Top = 86
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.AnchorSideLeft.Control = leDisplayName
EditLabel.AnchorSideRight.Control = leDisplayName
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leDisplayName
EditLabel.Left = 176
EditLabel.Height = 15
EditLabel.Top = 86
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.AnchorSideLeft.Control = leVersionProg
EditLabel.AnchorSideRight.Control = leVersionProg
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leVersionProg
EditLabel.Left = 400
EditLabel.Height = 15
EditLabel.Top = 86
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.AnchorSideLeft.Control = leRazrab
EditLabel.AnchorSideRight.Control = leRazrab
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leRazrab
EditLabel.Left = 0
EditLabel.Height = 15
EditLabel.Top = 126
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.AnchorSideLeft.Control = leKatalog
EditLabel.AnchorSideRight.Control = leKatalog
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leKatalog
EditLabel.Left = 0
EditLabel.Height = 15
EditLabel.Top = 174
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.AnchorSideLeft.Control = leInstallDate
EditLabel.AnchorSideRight.Control = leInstallDate
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = leInstallDate
EditLabel.Left = 200
EditLabel.Height = 15
EditLabel.Top = 126
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'
OnClick = bRegeditClick
TabOrder = 9
end
object bDeinstrall: TButton
Left = 288
Height = 25
Top = 8
Width = 115
Caption = 'Деинсталлировать'
OnClick = bDeinstrallClick
TabOrder = 10
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
end
object ProgressBar1: TProgressBar
Left = 576
Height = 24
Top = 400
Width = 133
Anchors = [akTop, akLeft, akRight, akBottom]
TabOrder = 2
end
object lProgress: TLabel
Left = 712
Height = 1
Top = 405
Width = 1
Anchors = [akTop, akLeft, akRight, akBottom]
Font.CharSet = RUSSIAN_CHARSET
Font.Height = -13
Font.Name = 'Times New Roman'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
end
object MainMenu1: TMainMenu
Images = ImageList1
left = 112
top = 48
object mFile: TMenuItem
Caption = 'Файл'
Bitmap.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000000000004949
490E474747125555551255555512555555125555551255555512555555124747
47124949490E0000000000000000000000000000000000000000505050105352
50A5A88474E7A88575E8A88575E8A88575E8A88575E8A88575E8A88575E8A884
74E7B18A78D4D19F884D000000000000000000000000000000004D4D4D145853
52CBE8AC90FFE8AC90FFE8AC90FFE8AC90FFE8AC90FFE8AC90FFE8AC90FFE8AC
90FFE8AC90FFDDA48C87000000000000000000000000000000004D4D4D145853
52CDE8AC90FFBE8D76FFD19B82FFBF8E77FFB1846EFFC08E77FFD09A81FFE8AC
90FFE8AC90FFDDA48C87000000000000000000000000000000004D4D4D145853
52CDE8AC90FFBE8D76FFB1846EFFC6937BFFC3917AFFAE816CFFBF8E77FFD09A
81FFE8AC90FFDDA48C87000000000000000000000000000000004D4D4D145853
52CDE8AC90FFD39C83FFCD987FFFD49D84FFDAA287FFC9957DFFD39C83FFDBA3
88FFE8AC90FFDDA48C87000000000000000000000000000000004D4D4D145853
52CDE8AC90FFD39C83FFCD987FFFD49D84FFDAA287FFC9957DFFD39C83FFDBA3
88FFE8AC90FFDDA48C87000000000000000000000000000000004D4D4D145853
52CDE8AC90FFBE8D76FFCC977FFFAD806BFFC29078FFAB7F6AFFE8AC90FFE8AC
90FFE8AC90FFDDA48C87000000000000000000000000000000004D4D4D145853
52CDE8AC90FFB48670FFA57A66FFC08E77FFC08E77FFE8AC90FFE8AC90FFE8AC
90FFE8AC90FFDDA48C87000000000000000000000000000000004D4D4D145853
52CDE8AC90FFBE8D76FFD09A81FFAC7F6BFFC49179FFB0826DFFC7947CFFC08E
77FFE8AC90FFDDA48C87000000000000000000000000000000004D4D4D145853
52CDE8AC90FFC9957DFFBF8E77FFC18F78FFD19B82FFBA8A73FFD39C83FFE8AC
90FFE8AC90FFDDA48C87000000000000000000000000000000004D4D4D145853
52CDE8AC90FFDEA58AFFDAA288FFDBA388FFE0A68BFFD9A186FFE1A78BFFE8AC
90FFE8AC90FFDDA48C87000000000000000000000000000000004D4D4D145853
52CDE8AC90FFBE8D76FFC8947CFFAA7E6AFFC08F77FFB98973FFBD8C75FFD29C
82FFE8AC90FFDDA48C87000000000000000000000000000000004D4D4D145853
52CBE8AC90FFBE8D76FFD19B82FFBB8B74FFC6937BFFAA7E6AFFBF8D76FFBF8E
77FFE8AC90FFDDA48C8700000000000000000000000000000000505050105954
53A6E0A78CFCE0A78CFCE0A78CFCE0A78CFCE0A78CFCE0A78CFCE0A78CFCE0A7
8CFCE1A88CF9DEA78C7C00000000000000000000000000000000000000004949
490E474747125555551255555512555555125555551255555512555555124747
47124949490E0000000000000000000000000000000000000000
}
ImageIndex = 11
object mCopy: TMenuItem
Caption = 'Копировать выделение'
Bitmap.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000000000000000
00000000000000000000000000004646461D4D4D4D354D4D4D354D4D4D354D4D
4D354D4D4D354D4D4D354D4D4D0A000000000000000000000000000000000000
00000000000000000000000000014E4E4E8DDEA68BFFDEA68BFFDEA68BFFDEA6
8BFFDEA68BFFDEA68BFFD5A188AE000000000000000000000000000000000000
00000000000000000002555555034D4D4D8FE7AB8FFFD29C82FFD49D84FFD39D
84FFD9A186FFE8AC90FFD8A389B6000000000000000000000000000000000000
00008080800270635CAFA08171DA6F625CEFE7AB8FFFC9957DFFD59E84FFD29B
82FFD29B82FFE3A88DFFD8A389B6000000000000000000000000000000000000
000240404004846E64E8E2A78CFF907569FFE6AB8FFFBA8A73FFCA967EFFCD98
7FFFC6937AFFDFA58AFFD8A389B60000000000000000000000004A4A4A1F7D6A
61AD93786CBB856F64F9CD977FFF7F695FFFE6AB8FFFC8947CFFC6937BFFBE8D
76FFDEA58AFFE8AC90FFD8A389B60000000000000000000000004C4C4C36B18B
78FEE7AC90FF8D7368FFD69E84FF836C62FFE5AA8EFFA97E69FFB68772FFCD98
7EFFD39D83FFDDA489FFD8A389B60000000000000000000000004C4C4C36B18B
78FEB68771FF8A7166FFD69E84FF856E63FFE5AA8EFFB1846EFFB98A73FFC08D
77FFC6947BFFE3A88DFFD8A389B60000000000000000000000004C4C4C36B18B
78FEBF8E77FF897166FFD69E84FF836C62FFE6AB8FFFC8947CFFBB8A74FFC692
7BFFCB977EFFE1A78BFFD8A389B60000000000000000000000004C4C4C36B18B
78FEC7947CFF8A7266FFDCA388FF8C7367FFE6AB8FFFC8947CFFC9957DFFC895
7CFFC5927AFFD79F85FFD8A389B60000000000000000000000004C4C4C36B18B
78FEC7947CFF8B7267FFD79F85FF9C7B6BFFBE927DFFBB907BFFC1947FFFC395
80FFBF937EE3BC917DD5CF9D85750000000000000000000000004C4C4C36B18B
78FEC7947CFF8B7267FFCD987FFFBF8D77FFB0826DFFAC7F6AFFB1836DFFE4AA
8EFFE4AA8F5400000002000000000000000000000000000000004C4C4C36B18B
78FED29C83FF8B7267FFE3A88DFFE3A88DFFDDA489FFD9A187FFDCA489FFE7AB
8FFFE9AC905300000000000000000000000000000000000000004C4C4C36B18B
78FEC8947CFFC1927AFFC3917BFFC8967EFFCB987FFFDEA58BFFB48C7833BA8F
7A30E6B3990A00000000000000000000000000000000000000004C4C4C36B18B
78FEC8947CFFD7A086FFC9967DFFC49179FFC6937BFFE7AB8FFF000000010000
00000000000000000000000000000000000000000000000000004D4D4D0A9578
6A57AE88756BAE88756BAE88756BAE88756BAE88756BC1957E57000000000000
0000000000000000000000000000000000000000000000000000
}
ImageIndex = 8
Visible = False
OnClick = pCopyClick
end
object mExport: TMenuItem
Caption = 'Экспорт в CSV'
Bitmap.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000000000000000
0000666666054B4B4B1155555512555555125555551255555512555555125555
5512555555124B4B4B1133333305000000000000000000000000000000004040
400479685E4CB58D7AE6B28B78EBB28B78EBB28B78EBB28B78EBB28B78EBB28B
78EBB28B78EBB58D7AE6806D6246404040040000000000000000FF000008FB02
027AF10E0CD7FA221DFFFA221DFFFA221DFFFA221DFFFA221DFFFA221DFFFA22
1DFFFA221DFFFA221DFFF30D0CD5FB020279FF00000800000000FF0000A2FF00
00FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF00
00FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000A000000000FF0000F7FF00
00FFFF6363FDFFBFBFFFFFA6A6FFFF2424FFFFAEAEFFFFB9B9FFFF8181FFFF00
00FFFFA3A3FFFFC2C2FFFF0000FFFF0000FFFF0000F700000000FF0000FFFF00
00FFFFE9E9FFFF1111FFFF0000FFFF0000FFFF5050FFFFB5B5FFFF9595FFFF16
16FFFFD4D4FFFFB9B9FFFF3131FFFF0000FFFF0000FF00000000FF0000FFFF00
00FFFFC5C5FFFF5757FFFF3030FFFF1717FFFFE5E5FFFF4646FFFF2424FFFF74
74FFFF7979FFFF5858FFFF9595FFFF0000FFFF0000FF00000000FF0000E0FF00
00FFFD0E0EFAFF7575FFFF7777FFFF0A0AFFFF5858FFFF8686FFFF3939FFFF58
58FFFF1717FFFF0808FFFC5A5AEFFF0000FFFF0000DF00000000FF000049FF00
00EFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF00
00FFFF0000FFFF0000FFFF0000FFFF0000EEFF0000480000000000000000DB18
1815C13B348FE06756FFBC4D40FFDC6554FFC25143FFF07360FFF07360FFF073
60FFF07360FFF07360FFC83B348ACC0D0D140000000000000000000000006666
660588726565D59E84FFBA8A73FFC39079FFAD806BFFC8947CFFC6937CFFAA7E
6AFFE5AA8EFFE8AC90FF8E76695F333333050000000000000000000000006666
660588726565D59E84FFAA7E6AFFBF8D76FFC49179FFAF826CFFB48670FFE8AC
90FFE8AC90FFE8AC90FF8E76695F333333050000000000000000000000006666
660588726565D59E84FFBA8A73FFB78872FFB98973FFB0836EFFCD987FFFBA8A
73FFE8AC90FFE8AC90FF8E76695F333333050000000000000000000000006666
66058A736664DAA288FFC5927BFFD9A186FFC7947CFFC08E77FFC8947CFFBB8A
74FFE5AA8EFFE8AC90FF90776A5E333333050000000000000000000000004040
400487726853D09C84F7C2917BF9CE9A83F8C2917BF9BD8E79F9C3927CF9BA8C
77F9D5A088F8D8A289F78972694E404040040000000000000000000000000000
0000666666054B4B4B1155555512555555125555551255555512555555125555
5512555555124B4B4B1133333305000000000000000000000000
}
Hint = 'Экспорт в CSV'
ImageIndex = 17
OnClick = mExportClick
end
object mExportHTML: TMenuItem
Caption = 'Экспорт в HTML'
Bitmap.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000000000004949
490E474747125555551255555512555555125555551255555512555555124747
47124949490E000000000000000000000000000000000000000050505010997B
6EC5B28A78EAB28B78EBB28B78EBB28B78EBB28B78EBB28B78EBB28B78EBB28A
78EAB28A78D450505010000000000000000000000000000000004D4D4D149E7A
6AEEB0836EFF926D5BFFAF826CFFCC977EFF9B7360FF946E5CFF97705EFF5F46
3BFF9D7664FB4D4D4D14000000000000000000000000000000004D4D4D149473
63EF735547FF664C3FFF9A725FFFC29078FF62493DFF543E34FF7C5C4DFF7456
48FFDAA38AFA4D4D4D14000000000000000000000000000000004D4D4D149473
63EF694E41FF62493DFF9A725FFFC29078FF3B2C25FF7E5E4EFF7C5C4DFF7456
48FFDAA38AFA4D4D4D14000000000000000000000000000000004D4D4D14A07C
6BEEB68771FF9A725FFF5A4338FF745648FF7A5A4CFFC8947CFF9B7360FF9A72
5FFFDAA38AFA4D4D4D14000000000000000000000000000000004D4D4D14B88F
7BECE8AC90FFE8AC90FFE8AC90FFE8AC90FFE8AC90FFE8AC90FFE8AC90FFE8AC
90FFDAA38AFA4D4D4D14000000000000000000000000000000004D4D4D14B88F
7BECE8AC90FFE8AC90FFD7947CFFE6A58AFFE8AC90FFE8AC90FFE8AC90FFE8AC
90FFDAA38AFA4D4D4D14000000000000000000000000000000004D4D4D14B88F
7BECE8AC90FFDBA287FF94463AFFE70201FFDEA388FFC6806DFFD0967EFFE8AC
90FFDAA38AFA4D4D4D14000000000000000000000000000000004D4D4D14B089
76ED9C5346FFDE2A29FFD84E45FFD10202FFAF5042FFD9685AFFE62A29FF9D42
39FFC9967EFA4D4D4D14000000000000000000000000000000004D4D4D146448
3EF5F22B2AFFF15F53FFE8AC90FFA82720FFB6110EFFE8AC90FFF07C6AFFF12C
2BFF71352EFD4D4D4D14000000000000000000000000000000004D4D4D14B48B
79EC9E5C4EFFD42928FFD94A42FFBD7965FFEF0000FFCB554AFFE02A29FF9B4A
40FFCF9B83FA4D4D4D14000000000000000000000000000000004D4D4D14B88F
7BECE8AC90FFE0A68BFFC1806CFFE8AC90FFC70706FF943129FFD69D83FFE8AC
90FFDAA38AFA4D4D4D14000000000000000000000000000000004D4D4D14B88F
7CEBE8AC90FFE8AC90FFE8AC90FFE8AC90FFC4715EFFA6473BFFE8AC90FFE8AC
90FFDBA48AF94D4D4D140000000000000000000000000000000050505010B28B
79D5D7A189F8D7A189F8D7A189F8D7A189F8D7A189F8D7A189F8D7A189F8D7A1
89F8CF9D85EA5050501000000000000000000000000000000000000000004949
490E474747125555551255555512555555125555551255555512555555124747
47124949490E0000000000000000000000000000000000000000
}
Hint = 'Экспорт в HTML'
ImageIndex = 18
OnClick = mExportHTMLClick
end
object mPeredatExcel: TMenuItem
Caption = 'Передать в Excel'
Bitmap.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000D18A5A00CE81
4CEED08453F0D08453F0D08453F0D08453F0D08453F0D08453F0D08453F0D084
53F0D08453F0D08453F0D08453F0CF814DEDD08C5B7E00000000D89D75FAE0AF
8EFFE0B08FFFE0B08FFFE0B08FFFE0B08FFFE0B08FFFE0B08FFFE0B08FFFE0B0