forked from lightbase/agente-windows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dfm
executable file
·1774 lines (1774 loc) · 66.6 KB
/
main.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 FormularioGeral: TFormularioGeral
Left = 331
Top = 136
HorzScrollBar.Visible = False
VertScrollBar.Visible = False
BiDiMode = bdLeftToRight
BorderIcons = []
BorderStyle = bsSingle
Caption = 'CACIC - Informa'#231#245'es Gerais'
ClientHeight = 562
ClientWidth = 752
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Icon.Data = {
0000010001003030000000000000A80E00001600000028000000300000006000
00000100080000000000800A0000000000000000000000000000000000000000
0000FFFFFF001F59FD0070E1360077C7CB0027636C000017B900376F0B000012
5B00A3FFFF0030C8F9004B71BB006494F800499C4A006DC183001B382D001954
A6003B938700002BF30036A2D9004DBCB100092D87008EF2D20025375E007ED7
F70000092E001C50D3004E9E1F0080E4910063B55900112608005F9DA0003955
8E003055450061ABD000244D04003778F4005781D90063B5FE005FBC32003B85
5B000534CA0074C7A9005D8F7E004282260017223B0073D463002D58260045B3
F9003875D50081DFB500416F73002F477700083CFF00338FC3002667870092F3
F3002EB8E7000021D500001DA000132127002757BC00021C780083DADC00447E
45004262A400080E15005899B5003D9B9A00020245006EBEE00069ACB7005398
ED000C3CA2002E6C57007ADA79002842470053A830001F3D15004F8486000F48
BC001D2C49004C8BC10047AEA0006DA2FF006ECE4F00226197004390D400012E
DD0016388600264C320075CD910030515900113562000B31B60058A5F900549C
D80069CD300030797F0002114500325B7F0094FADE00274F190056AE24005078
C9006DA99C005E8DE900326B1C0047963900559095007ACDE1007BD6A2003F8E
5700357D6C003C6C96002D6BFB0089E9C3004082ED0071BDC0003B66660089E9
FF007FD4BD000032FD0087E0EA00326EE7000024B00010244C001E333A002E5C
14000026C10065BD490072C29A001941AD0016499800001B8E0084DCCB004893
27003C8539002A3F6900205C8E0076CBF1000C1B0B00172E16004F8FDF0098FD
FC00478054001854B8003D791D0032596F00164DFD002C6E6E0064A7AB004181
D6000C151F000333EE004188CA0042746500294D28002FADDC001C3B05003466
2900354F85003EAEEE006699F40035878500365C630030C0F00072D741008FEE
EB0053B13B004669B00034628A00519C3F003C96960002061000131D3000000B
3A0060B150000129CE0087E3CF0073C1D4004D94F80063C32C004E9F2A003D5C
99002C6D7B0085E6AA0076D86F001E4B3E005693AB002C64990074D850001D3D
6300408E3F00679AFE00345951003A8964000B3AB700172B21005EA7D8000407
0600316310005AB32B005A88E200B1FFFF00539DF700233C3A0005237D00144C
AF00537ED00053898D0018320600002FE7007ED2D80071D45A00296355001C59
A4000007240088E3E100102F810068ACA60042934B005F91F000265630004B7F
7E000E2A4400418D35000E1724006BD335001246F6002662FE0076C4C1006FC6
8D001247A1002C57860032611C006CBAD50036B1E700050F33005690E6004894
DA0075C5DF0073C89F0087E9B8000021B5002B494C003F9ADA009DFFFE005A97
9800112111007DCFC6006ABDFE000630D5004260AD004F9D34003AA5E0000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000003E08000000000000000000000000
0000000000000000000000000000000000000000000000008608000000000000
00087A5800000000000000000000000000000000000000000000000000000000
0000000000000000D47A630000000000B0D47A7A7D0000000000000000000000
0000000000000000000000000000000000000000000000B27A7A810000000000
867A7A7AB2000000000000000000000000000000000000000000000000000000
00000000000000587A7A7A08000000B07A7A7A7AD40000000000000000000000
00000000000000000000000000000000000000000000867A7A7A7AD400000063
587A7A7A12860000000000000000000000000000000000000000000000000000
000000000000F47A7A7A7A581900005CEA817AFCC55900000000000000000000
00000000000000000000000000000000000000000000595ED47AF4AB7F00003F
A8943BC069DC0000000000000000000000000000000000000000000000000000
000000000000DC2BDB8633F76D003CDAF7387797CC3F00000000000000000000
000000173434348A00000000000000000000000000A538CC4F3390F79700003F
F790F790F73F4C0000000000000017A1AA68CBDEC25454C26A250BB834000000
0000000000E038F7A8F790F71F0000F80990F790F73F000000000000200B0C54
5454C2C2C2C2C2C2C2545454C2D1B83400000000003338F7F790F709A500000F
1FF7F790097600000000B8CB5454C2C2C2C2C25454C25454C2C2C2C2C25454C2
0B170000003CD50990F790F8C600001E2CD29009E721C800A1D15454C2C2C2C2
C2C2546820202041CB54C2C2C2C2C2C254DEAA000000C33F09A8E093F900008D
B72C334F402399AAC254C2C2C2C2C2C2C2C220B8AA0BAAAA204154C2C2C2C2C2
C2C2542500C8C991D29C882C00000000660388881B5AFD4857DEC2C2C2C2C2C2
54A141CBC2C254C22520B854C2C2C2C2C2C2EFF08F2D80B788B7034E00000000
F94D03E41B510CF639FF6AC2C2C2C2C2CB8A6AC2C2C2C2C2C2CB3468C2C2C2C2
C2EFED398F257F67E4032C0000000000004E27B69DBEA29BF6A6FFEFC2C2C2C2
DECBC2C2C2C2C2C2C2C2CBCBC2C2C20C8FEDA6575730C0EBE4B78E0000000000
00429F9351489EA657F6A6ED8FC2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C20C8F
A6A69B570A9EEF7F93D3000000000000992541F96AC28F9EA65757A6398F0CC2
C2C2C2C2C2C2C2C2C2C2C2C2C2DEF00A399BF60A9E8F540B8D0BA10000000000
68C20CCBC2C2C28F9E0AF69B36EFC2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2EF36
9BF60A138FC2C2C2CBC2A38A00000041C2C2C2C2C2C2C2C28F9EA6F0DEC2C2C2
C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2CBF60A13EFC2C2C2C2C2C2C2A35100AFC2
C2C2C2C2C2C2C2C2C2EF9BDEC2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2
EF9BDEC2C2C2C2C2C2C2C2C2CB002DC2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2
C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C22DAFC2
C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2
C2C2C2C2C2C2C2C2C2C2C2C2C2AF0041C2C2C2C2C2C2C2C2C2C20CCB25D1680B
AA4125C2C2C2C2C2C2C22541AA0B68D125CB0CC2C2C2C2C2C2C2C2C2AA000000
4154C2C2C2C2C2C2C2C2682020B841AA0B0B0CC2C2C2C2C2C2C20C0B0BAA41B8
2020D1C2C2C2C2C2C2C2DE1700000000426A0CC2C2C2C2C2C2C2C25454C2C2C2
C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C25454C2C2C2C2C2C2C2A3510000000000
00AFB825CB6A0CC2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2C2
C2C2C2C20CDECBCBAA17C80000000000000000009951A1AA682525CBCBCB6A6A
DEDE0C0CC2C2C2C20C0CDE6A6ACBCBCB2525D1AA2017AFAE0000000000000000
000000000000000000C842E3AF2D51178A34A120B8CBCBB820348A17512DAFE3
42AE000000000000000000000000000000000000000000000000000000000000
0000000000343400000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000002D17000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000C8AF00000000000000000000000000000000000000000000000000
00AE19D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9D9EED9D9D9D9D9D9D9D9D9
D9D9D9D9D9D9D9D9D919AE00000000000063F4F4F4F4F4F4F4F4F4F4F4F4F4F4
F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F4F43BB00000000000
00003E15CF3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E3E
3E3E3E3E3E3E3ECF1508000000000000000000BC531414141414141414141414
1414141414141414141414141414141414141414141414110F00000000000000
00000000A444AD44ADAD44ADADADAD44AD44ADAD44ADAD44AD44ADAD44AD44AD
AD44AD4444AD449600000000000000000000000000002F4C7E63D321CE080F1E
77E308668D770899664C7F081E9DF563E1D3217F455A00000000000000000000
00000000D4D7821F3D7D6B0E1FFC05C9B3643A6CA0DA5E5DCA1F723ADFB14784
E90783BD067100B30000000000000000000000007A37A787CD3A70BB870210B7
16227A71FEF731C5612A8C3AB9A7FA7529E21CF1E55688160000000000000000
000000007AD86174263AC4D61673C54D32EC35374D90F058B68378B256A7795F
81DD4BB402D088740400000000000000000000B27A92B6F3FB3A71556524C5A9
6FB4358BCAA8609ACAE87829D8E432268170BB040250B7320400000000000000
000000007A56E4745F3A702E87E6D0B7742235B94D90982961F2183A37A779B5
29C11C6E951088160000000000000000000000007A96BFFA75B2891CD5953788
65527A0DACF71A85E4E7C7124AD67B7C5088BA469A62B7650000000000000000
0000000029001D000049005B43B22800B300004D0087B2004DD500B2001DB400
8B008300002800FA000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000FFFF
FFFFFFFF0000F3FFFFFFFFCF0000E3FFFFFFFFC70000C1FFFFFFFF870000C1FF
FFFFFF83000081FFFFFFFF03000080FFFFFFFF01000080FFFFFFFF01000080FF
FFFFFF01000000FFF83FFE010000807F0001FE01000080FC00003E01000080F0
00000E01000080400000070100008000000002030000C000000000030000C000
000000070000E000000000070000E0000000000F0000C000000000070000C000
0000000300008000000000010000000000000001000000000000000000000000
0000000000008000000000010000C00000000003000080000000000500008000
0000000300008000000000030000C000000000030000C000000000030000C000
000000070000E000000000070000E000000000070000E000000000070000F000
0000000F0000F8000000001F0000FC000000003F0000FF00000000FF0000FC00
000000BF0000FC000000003F0000FC000000001F0000F8000000001F0000FC00
0000003F0000FC000000003F0000FD685A4A56BF0000FFFFFFFFFFFF0000}
OldCreateOrder = False
ParentBiDiMode = False
Position = poDesktopCenter
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object Panel3: TPanel
Left = 648
Top = -1
Width = 105
Height = 567
Color = clGray
TabOrder = 3
object pnVersao: TPanel
Left = 5
Top = 546
Width = 96
Height = 16
BevelInner = bvLowered
BevelOuter = bvLowered
Caption = 'v. 2.8.0.xxx'
Color = clBackground
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -9
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
end
object bt_Fechar_Infos_Gerais: TBitBtn
Left = 6
Top = 252
Width = 96
Height = 48
Caption = 'Fechar'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
TabStop = False
OnClick = Bt_Fechar_InfosGeraisClick
Glyph.Data = {
E6040000424DE604000000000000360000002800000014000000140000000100
180000000000B0040000120B0000120B00000000000000000000FFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFA39C989C969D96909D918B98928B908C827AFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFC0BCBCB4B4D19B9AD85657CD6364D96364D95657CD9998D2ADA9BE9D958EFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB7B4C18B8BD5
5A5AD88081E48B8BE58D8DE48D8DE48B8BE57777E24646C98E8DC8A7A0A1FFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6B4C27D7DCB9B9BE26E6ED254
54D35A5AD55959D55959D55959D55454D39B9BE26868CC6262B5A8A2A3FFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4848A78888D8F0F0FBBCBCE64242BA2525
C42E2EC62E2EC62525C48888D8E2E2F5DBDBF13939B07574ADA59E98FFFFFFFF
FFFFFFFFFFFFFFFF9291B52020943332A6BCBCE6DEDEF4B2B2DF2625B10000AE
0000AE6E6ED2D8D8F1DBDBF38080CC10109505068DA8A5B3FFFFFFFFFFFFFFFF
FFFFFFFF37378A00007D0000852828A2BCBCE6DEDEF4B2B2DF1F1FAA5A5AC8D4
D4F0DBDBF38080CC01019100008800007D7C7AA8FFFFFFFFFFFFFFFFFFD0CFD6
20207300007200007F0000852828A2BBBBE3D8D8F1BBBBE3CBCBECD9D9F28080
CC01018F00008600007F000070515193BCB8B7FFFFFFFFFFFFBBBAC60E0E611D
1D7B0E0E7C03037D00007B272799C3C3E5D3D3EBD6D6ED8484C300008300007F
0000790000700000640A0A61C1BEC0FFFFFFFFFFFFBBBAC63838786564A06564
A056569E4242977A7ABBD3D3EBD9D9EED9D9EEAFAFD12E2E8A14148116167B0C
0C6D000058060751CAC8C9FFFFFFFFFFFFCECDD38383A48A8AAE8383AD8181B2
B8B8D4F1F1F7EDEDF2CBCBE1DADAEAF1F1F7D3D3E48181B27E7EAD7E7EAD5454
871B1B53CFCCCBFFFFFFFFFFFFFFFFFF7D7D929F9FB79D9DBAC3C3D5F3F3F4F1
F1F7D3D3E49999C0ABABCCE6E6EEF6F6F8DDDDE79D9DBAA2A2BB8A8BA2848295
DBD8D8FFFFFFFFFFFFFFFFFF8B8B96D8D8DDD5D5DEF6F6F8F5F5F6DDDDE7B4B4
CBB4B4CBB1B1C9C3C3D5EDEDF2F9F8F8E3E3EABEBECCB5B5BFADABB1FFFFFFFF
FFFFFFFFFFFFFFFFFFFFFF898896FEFEFEFBFBFBE6E6EEC9C9D5CAC9D5CBCBD6
CBCBD6C8C7D3D5D5DEF3F2F3F9F9FAF0F0F2848290FFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFAEAEB8FFFFFFE5E3E8DBDBE0DBDADFDBDADFDBDADFDC
DBDFDCDBE0EBEAECF9F9FA858594FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFA4A4AFF4F4F5ECECEEF3F3F4F4F3F4F3F3F4F3F2F3E4E3
E7E6E6E99493A0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFB1B1BAB1B1BAD8D8DDE3E3E7E3E3E7D2D2D7A9A9B3C0C0C6
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFC8C8CDCAC9CEFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFF}
Spacing = 1
end
end
object Pn_InfosGerais: TPanel
Left = 0
Top = 0
Width = 647
Height = 564
BevelOuter = bvNone
Color = clHighlight
TabOrder = 0
object Pn_SisMoni: TPanel
Left = 2
Top = 200
Width = 640
Height = 100
Caption = 'Pn_SisMoni'
TabOrder = 0
DesignSize = (
640
100)
object Lb_SisMoni: TLabel
Left = 5
Top = 4
Width = 273
Height = 13
Alignment = taCenter
Caption = 'Sistemas Monitorados Instalados Nesta Esta'#231#227'o'
Font.Charset = DEFAULT_CHARSET
Font.Color = clHotLight
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold, fsUnderline]
ParentFont = False
end
object listSistemasMonitorados: TListView
Left = 5
Top = 19
Width = 632
Height = 78
Anchors = [akLeft, akTop, akRight, akBottom]
BiDiMode = bdLeftToRight
Color = clSilver
Columns = <
item
Caption = 'Nome do Sistema Monitorado'
Width = 295
end
item
Caption = 'Licen'#231'a'
Width = 200
end
item
Caption = 'Vers'#227'o/Configura'#231#227'o'
Width = 130
end>
DragMode = dmAutomatic
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial Narrow'
Font.Style = []
FlatScrollBars = True
GridLines = True
HotTrackStyles = [htUnderlineHot]
ReadOnly = True
ParentBiDiMode = False
ParentFont = False
TabOrder = 0
TabStop = False
ViewStyle = vsReport
end
end
object Pn_TCPIP: TPanel
Left = 2
Top = 49
Width = 640
Height = 149
Caption = 'Pn_TCPIP'
TabOrder = 1
object Lb_TCPIP: TLabel
Left = 5
Top = 4
Width = 140
Height = 15
Alignment = taCenter
Caption = 'Configura'#231#245'es de TCP/IP'
Font.Charset = DEFAULT_CHARSET
Font.Color = clHotLight
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold, fsUnderline]
ParentFont = False
end
object GB_InfosTCPIP: TGroupBox
Left = 5
Top = 19
Width = 631
Height = 126
Color = clSilver
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentColor = False
ParentFont = False
TabOrder = 0
DesignSize = (
631
126)
object ST_VL_DominioWindows: TStaticText
Left = 436
Top = 57
Width = 18
Height = 19
Alignment = taRightJustify
Anchors = [akRight]
Caption = '13'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 31
end
object ST_LB_DominioWindows: TStaticText
Left = 267
Top = 57
Width = 177
Height = 19
Caption = 'Servidor de Dom'#237'nio Windows:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 30
end
object ST_VL_MacAddress: TStaticText
Left = 436
Top = 23
Width = 18
Height = 19
Alignment = taRightJustify
Anchors = [akRight]
Caption = '12'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 29
end
object ST_LB_MacAddress: TStaticText
Left = 352
Top = 23
Width = 90
Height = 19
Caption = 'Endere'#231'o MAC:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 28
end
object ST_LB_NomeHost: TStaticText
Left = 60
Top = 8
Width = 92
Height = 19
Caption = 'Nome do HOST:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
end
object ST_VL_NomeHost: TStaticText
Left = 145
Top = 8
Width = 11
Height = 19
Alignment = taRightJustify
Anchors = [akRight]
Caption = '1'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 1
end
object ST_LB_IpEstacao: TStaticText
Left = 15
Top = 23
Width = 141
Height = 19
Caption = 'Endere'#231'o IP da Esta'#231#227'o:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 2
end
object ST_LB_IpRede: TStaticText
Left = 29
Top = 40
Width = 124
Height = 19
Caption = 'Endere'#231'o IP da Rede:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 3
end
object ST_LB_DominioDNS: TStaticText
Left = 5
Top = 57
Width = 148
Height = 19
Caption = 'Servidor de Dom'#237'nio DNS:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 4
end
object ST_LB_DnsPrimario: TStaticText
Left = 20
Top = 73
Width = 134
Height = 19
Caption = 'Servidor DNS Prim'#225'rio:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 5
end
object ST_LB_DnsSecundario: TStaticText
Left = 5
Top = 89
Width = 150
Height = 19
Caption = 'Servidor DNS Secund'#225'rio:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 6
end
object ST_LB_Gateway: TStaticText
Left = 53
Top = 107
Width = 100
Height = 19
Caption = 'Gateway Padr'#227'o:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 7
end
object ST_LB_Mascara: TStaticText
Left = 318
Top = 40
Width = 128
Height = 19
Caption = 'M'#225'scara de SubRede:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 8
end
object ST_LB_ServidorDHCP: TStaticText
Left = 354
Top = 106
Width = 90
Height = 19
Caption = 'Servidor DHCP:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 9
end
object ST_LB_WinsPrimario: TStaticText
Left = 306
Top = 73
Width = 139
Height = 19
Caption = 'Servidor Wins Prim'#225'rio:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 10
end
object ST_LB_WinsSecundario: TStaticText
Left = 291
Top = 89
Width = 155
Height = 19
Caption = 'Servidor Wins Secund'#225'rio:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 11
end
object ST_VL_IpEstacao: TStaticText
Left = 145
Top = 23
Width = 11
Height = 19
Alignment = taRightJustify
Anchors = [akRight]
Caption = '2'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 12
end
object ST_VL_DNSPrimario: TStaticText
Left = 145
Top = 73
Width = 11
Height = 19
Alignment = taRightJustify
Anchors = [akRight]
Caption = '5'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 13
end
object ST_VL_DNSSecundario: TStaticText
Left = 145
Top = 89
Width = 11
Height = 19
Alignment = taRightJustify
Anchors = [akRight]
Caption = '6'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 14
end
object ST_VL_Gateway: TStaticText
Left = 145
Top = 107
Width = 11
Height = 19
Alignment = taRightJustify
Anchors = [akRight]
Caption = '7'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 15
end
object ST_VL_Mascara: TStaticText
Left = 436
Top = 40
Width = 11
Height = 19
Alignment = taRightJustify
Anchors = [akRight]
Caption = '8'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 16
end
object ST_VL_ServidorDHCP: TStaticText
Left = 436
Top = 106
Width = 11
Height = 19
Alignment = taRightJustify
Anchors = [akRight]
Caption = '9'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 17
end
object ST_VL_WinsPrimario: TStaticText
Left = 436
Top = 73
Width = 18
Height = 19
Alignment = taRightJustify
Anchors = [akRight]
Caption = '10'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 18
end
object ST_VL_WinsSecundario: TStaticText
Left = 436
Top = 89
Width = 18
Height = 19
Alignment = taRightJustify
Anchors = [akRight]
Caption = '11'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 19
end
object ST_VL_DominioDNS: TStaticText
Left = 145
Top = 57
Width = 11
Height = 19
Alignment = taRightJustify
Anchors = [akRight]
Caption = '4'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 20
end
object ST_VL_IpRede: TStaticText
Left = 145
Top = 40
Width = 11
Height = 19
Alignment = taRightJustify
Anchors = [akRight]
Caption = '3'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 21
end
object Pn_Linha1_TCPIP: TPanel
Tag = 36
Left = 3
Top = 22
Width = 627
Height = 2
TabOrder = 22
end
object Pn_Linha2_TCPIP: TPanel
Tag = 36
Left = 3
Top = 39
Width = 627
Height = 2
TabOrder = 23
end
object Pn_Linha3_TCPIP: TPanel
Tag = 36
Left = 3
Top = 56
Width = 627
Height = 2
TabOrder = 24
end
object Pn_Linha4_TCPIP: TPanel
Tag = 36
Left = 3
Top = 71
Width = 627
Height = 2
TabOrder = 25
end
object Pn_Linha6_TCPIP: TPanel
Tag = 36
Left = 3
Top = 104
Width = 627
Height = 2
TabOrder = 26
end
object Pn_Linha5_TCPIP: TPanel
Tag = 36
Left = 3
Top = 87
Width = 627
Height = 2
TabOrder = 27
end
end
end
object pnColetasRealizadasNestaData: TPanel
Left = 2
Top = 302
Width = 640
Height = 129
Caption = 'Pn_SisMoni'
TabOrder = 2
DesignSize = (
640
129)
object lbColetasRealizadasNestaData: TLabel
Left = 5
Top = 4
Width = 177
Height = 13
Alignment = taCenter
Caption = 'Coletas Realizadas Nesta Data'
Font.Charset = DEFAULT_CHARSET
Font.Color = clHotLight
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold, fsUnderline]
ParentFont = False
end
object teDataColeta: TLabel
Left = 187
Top = 4
Width = 3
Height = 15
Alignment = taCenter
Caption = '.'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
end
object listaColetas: TListView
Left = 5
Top = 19
Width = 631
Height = 105
Anchors = [akLeft, akTop, akRight, akBottom]
BiDiMode = bdLeftToRight
Color = clSilver
Columns = <
item
Caption = 'M'#243'dulo de Coleta'
Width = 250
end
item
Caption = 'Hora In'#237'cio'
Width = 60
end
item
Caption = 'Hora Fim'
Width = 60
end
item
Caption = 'Status Final'
Width = 240
end>
DragMode = dmAutomatic
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial Narrow'
Font.Style = []
FlatScrollBars = True
GridLines = True
HotTrackStyles = [htUnderlineHot]
ReadOnly = True
ParentBiDiMode = False
ParentFont = False
TabOrder = 0
TabStop = False
ViewStyle = vsReport
end
end
object pnInformacoesPatrimoniais: TPanel
Left = 2
Top = 433
Width = 640
Height = 128
Caption = 'Pn_TCPIP'
TabOrder = 3
object lbInformacoesPatrimoniais: TLabel
Left = 5
Top = 4
Width = 147
Height = 15
Alignment = taCenter
Caption = 'Informa'#231#245'es Patrimoniais'
Font.Charset = DEFAULT_CHARSET
Font.Color = clHotLight
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold, fsUnderline]
ParentFont = False
end
object lbSemInformacoesPatrimoniais: TLabel
Left = 157
Top = 4
Width = 265
Height = 15
Alignment = taCenter
Caption = '(Informa'#231#245'es Patrimoniais ainda n'#227'o coletadas)'
Font.Charset = DEFAULT_CHARSET
Font.Color = clRed
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
Visible = False
end
object gpInfosPatrimoniais: TGroupBox
Left = 5
Top = 19
Width = 631
Height = 106
Color = clSilver
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentColor = False
ParentFont = False
TabOrder = 0
DesignSize = (
631
106)
object st_vl_etiqueta9: TStaticText
Left = 510
Top = 90
Width = 18
Height = 19
Anchors = [akRight]
Caption = '10'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 24
end
object st_lb_Etiqueta9: TStaticText
Left = 355
Top = 90
Width = 150
Height = 13
Alignment = taRightJustify
AutoSize = False
Caption = 'S'#233'rie da Impressora:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 18
end
object st_vl_Etiqueta3: TStaticText
Left = 146
Top = 58
Width = 11
Height = 19
Anchors = [akRight]
Caption = '4'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 17
end
object st_lb_Etiqueta3: TStaticText
Left = 3
Top = 57
Width = 140
Height = 18
Alignment = taRightJustify
AutoSize = False
Caption = 'Se'#231#227'o:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 16
end
object st_vl_etiqueta4: TStaticText
Left = 510
Top = 9
Width = 11
Height = 19
Anchors = [akRight]
Caption = '5'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 19
end
object st_vl_etiqueta5: TStaticText
Left = 510
Top = 26
Width = 11
Height = 19
Anchors = [akRight]
Caption = '6'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
TabOrder = 20
end