-
Notifications
You must be signed in to change notification settings - Fork 1
/
MDN110UQ.dfm
11973 lines (11973 loc) · 799 KB
/
MDN110UQ.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 MDN110FQ: TMDN110FQ
Left = 383
Top = 271
BorderStyle = bsSingle
Caption = 'MDN110FQ 결과입력항목'
ClientHeight = 571
ClientWidth = 684
Color = clBtnFace
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '굴림체'
Font.Style = []
FormStyle = fsStayOnTop
KeyPreview = True
OldCreateOrder = False
Position = poMainFormCenter
OnClose = FormClose
OnDestroy = FormDestroy
OnKeyDown = FormKeyDown
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Panel3: TPanel
ParentBackground = False
Left = 0
Top = 533
Width = 682
Height = 38
BevelOuter = bvLowered
TabOrder = 0
object bbt_Close: TBitBtn
Left = 570
Top = 3
Width = 107
Height = 31
Caption = ' 종 료(&A)'
TabOrder = 0
OnClick = bbt_CloseClick
Glyph.Data = {
6E040000424D6E04000000000000360000002800000013000000120000000100
18000000000038040000CE0E0000D80E00000000000000000000BFBFBFBFBFBF
BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF
BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF000000BFBFBFBFBFBFBFBFBFBF
BFBFFFFFFFBFBFBFFFFFFFFFFFFFBFBFBFFFFFFF000000000000FFFFFFBFBFBF
FFFFFFBFBFBFBFBFBFBFBFBFBFBFBF000000BFBFBFFFFFFFBFBFBFFFFFFFFFFF
FFBFBFBFFFFFFFBFBFBFFFFFFFFFFFFF000000FFFF00000000FFFFFFFFFFFFBF
BFBFBFBFBFBFBFBFBFBFBF000000BFBFBFFFFFFFBFBFBFFFFFFFBFBFBFFFFFFF
FFFFFFBFBFBFFFFFFFBFBFBF000000FFFF007F7F00000000BFBFBFFFFFFFFFFF
FFBFBFBFBFBFBF000000BFBFBF000000000000000000000000000000000000FF
FFFFFFFFFFBFBFBF000000FFFF007F7F007F7F00000000000000000000BFBFBF
BFBFBF000000BFBFBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFBF
BFFFFFFF000000FFFF007F7F007F7F00000000BFBFBFFFFFFFBFBFBFBFBFBF00
0000BFBFBFFFFFFFFFFFFFFFFFFFFFFFFF000000BFBFBF7F7F7F7F7F7F7F7F7F
000000FFFF007F7F007F7F00000000BFBFBFFFFFFFBFBFBFBFBFBF000000BFBF
BFFFFFFFFFFFFFFFFFFFFFFFFF0000000000007F7F7F7F7F7F7F7F7F000000FF
FF007F7F007F7F00000000BFBFBFFFFFFFBFBFBFBFBFBF000000BFBFBFFFFFFF
FFFFFFBFBFBFBFBFBF0000007F7F000000007F7F7F7F7F7F000000FFFF007F7F
7F7F7F00000000BFBFBFFFFFFFBFBFBFBFBFBF000000BFBFBFFFFFFF00000000
0000000000000000FFFF007F7F000000007F7F7F000000FFFF000000007F7F00
000000BFBFBFFFFFFFBFBFBFBFBFBF000000BFBFBF000000FFFF00FFFF00FFFF
00FFFF00FFFF00FFFF007F7F00000000000000FFFF007F7F007F7F00000000BF
BFBFFFFFFFBFBFBFBFBFBF000000BFBFBF000000FFFF00FFFF00FFFF00FFFF00
FFFF00FFFF007F7F007F7F7F000000FFFF007F7F007F7F00000000BFBFBFFFFF
FFBFBFBFBFBFBF000000BFBFBFFFFFFFFFFFFFFFFFFFFFFFFF000000FFFF007F
7F007F7F7F7F7F7F000000FFFF007F7F007F7F00000000BFBFBFFFFFFFBFBFBF
BFBFBF000000BFBFBFFFFFFFFFFFFFFFFFFFFFFFFF0000007F7F007F7F7F7F7F
7F7F7F7F000000FFFF007F7F007F7F00000000BFBFBFFFFFFFBFBFBFBFBFBF00
0000BFBFBFFFFFFFFFFFFFFFFFFFFFFFFF000000FFFFFF7F7F7F7F7F7F7F7F7F
7F7F7F000000FFFF007F7F00000000BFBFBFFFFFFFBFBFBFBFBFBF000000BFBF
BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7F7F7F7F7F7F7F7F7F7F7F7F7F
7F7F000000FFFF00000000BFBFBFFFFFFFBFBFBFBFBFBF000000BFBFBFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000
00000000000000FFFFFFFFFFFFBFBFBFBFBFBF000000BFBFBFBFBFBFBFBFBFBF
BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF
BFBFBFBFBFBFBFBFBFBFBFBFBFBFBF000000}
end
object bbt_Save: TBitBtn
Left = 462
Top = 3
Width = 108
Height = 31
Caption = ' 저 장'
Font.Charset = HANGEUL_CHARSET
Font.Color = clBlue
Font.Height = -15
Font.Name = '굴림체'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
OnClick = bbt_SaveClick
Glyph.Data = {
36030000424D3603000000000000360000002800000010000000100000000100
1800000000000003000000000000000000000000000000000000F0F0F0AFA9A9
A49E9EA69F9FA69F9FA69F9FA69F9FA69F9EA69E9FA69F9FA69F9EA69F9FA99F
A1AD9EA3AAA8A8F8F8F8CBC0C0E9D5D7E9D6D6E8D6D6E8D6D6E9D5D6E8D6D6E8
D6D5E8D5D6E8D5D6E8D6D5EED6D9BBD6B7A4DBA9DAC6C6AEACACE0D2D1E0D4D4
DFD3D3DFD3D3E0D3D4E0D3D3E0D3D3DFD4D3DFD3D3E0D3D3E0D3D3E3D1D5BDD3
BAA8D7AFF1E1E1A5A1A1DFD3D3E6DCDCE4DBDBE5DBDAE4DBDBE3DBDAEDDFE3EB
DAE0EDDEE4EAE1E0E3DADAE4DBDBEADBDEEEDBE2F3E6E7A6A2A2E3D9DAECE6E6
EAE4E5EAE4E4E9E3E3F9ECF2D0D4CA72A4717A9477E3D6DDF3EDEDE9E3E4EBE4
E5EBE6E6F8F0F0A6A2A2E7E2E3F3F5F5F2F2F3F4F3F3FFF5FDBFCDBC6DB36FA0
E0A67AC27F5D885DDFD3DBFEFAFCF1F1F2F4F4F5FEFCFEB2AFAFE6DAD8E3D5D1
E7DFDEF3DDE4A9C2A661B4659EE1A5ACE7B2AEEBB479CA7F4E8750C5BCBDF5E7
E8EFE5E3CAB4B0DFDEDEEFDEDAC57861D8887979754458B45F8EDF9790DD988D
DB958DDB9595E19D75D07F3C7B34A16A59E3927F9F7162FCFCFCFCF9F9D28E7C
73884446BC587ADB8576D47F74D37D74D37D74D37D74D37D7CD88366D6772B82
2E9E6B49AE9893FFFFFFFFFFFFD8AEA355822D53A2474DBC565CCC675BCB665B
CB665BCB665CCD6754C7614DA8484A983C846434CFC8C8FFFFFFFFFFFFEBD7D2
CA6B4BCC704E5B862F35C14944C55041C44E41C44E41C950299B309F744DE191
76B0715EF8F8F8FFFFFFFFFFFFFBF7F6C27356D9765375803314B22B25BC3328
BB362BBC3927C039218B22BD866CEA9E80A3847AFFFFFFFFFFFFFFFFFFFFFFFF
D3A190E7977F889A5849C25A43C64F19B6290EB31E0AB51D138714C7937CE194
7ABBB2AFFFFFFFFFFFFFFFFFFFFFFFFFE6CBC3E193808EA2656ACE797ED88666
CE7038C04535C445379536CA947DC37F6DE3E2E2FFFFFFFFFFFFFFFFFFFFFFFF
FBF7F6E2BAB5919D6A81D88E90E19893E09B95E09D9CE7A669AE6ABA9180C2B5
B3FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFDFDC6DCC570BA7288CC8C86
CA8A85C98983CB867AA27CEFEDECFFFFFFFFFFFFFFFFFFFFFFFF}
end
end
object Panel1: TPanel
ParentBackground = False
Left = 0
Top = 0
Width = 682
Height = 41
BevelOuter = bvLowered
TabOrder = 1
object Label1: TLabel
Transparent = False
Left = 229
Top = 17
Width = 14
Height = 13
Caption = '시'
Font.Charset = HANGEUL_CHARSET
Font.Color = clMaroon
Font.Height = -13
Font.Name = '굴림'
Font.Style = [fsBold]
ParentFont = False
end
object Label2: TLabel
Transparent = False
Left = 273
Top = 17
Width = 14
Height = 13
Caption = '분'
Font.Charset = HANGEUL_CHARSET
Font.Color = clMaroon
Font.Height = -13
Font.Name = '굴림'
Font.Style = [fsBold]
ParentFont = False
end
object Panel4: TPanel
ParentBackground = False
Left = 7
Top = 8
Width = 88
Height = 23
BevelInner = bvLowered
BevelOuter = bvNone
Caption = 'Acting 일시'
Color = 13032632
Font.Charset = HANGEUL_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = '굴림'
Font.Style = []
ParentFont = False
TabOrder = 0
end
object dtp_ActTime: TDateTimePicker
Left = 95
Top = 8
Width = 106
Height = 23
CalAlignment = dtaLeft
Date = 38280.595025544
Time = 38280.595025544
DateFormat = dfShort
DateMode = dmComboBox
Enabled = False
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -15
Font.Name = '굴림체'
Font.Style = []
ImeName = '한국어(한글) (MS-IME98)'
Kind = dtkDate
ParseInput = False
ParentFont = False
TabOrder = 1
end
object med_ActTime1: TMaskEdit
Left = 201
Top = 8
Width = 25
Height = 23
AutoSize = False
Color = 16383999
Enabled = False
EditMask = '##'
Font.Charset = HANGEUL_CHARSET
Font.Color = clBlack
Font.Height = -15
Font.Name = '굴림체'
Font.Style = []
ImeName = '한국어(한글)'
MaxLength = 2
ParentFont = False
TabOrder = 2
Text = ' '
end
object med_ActTime2: TMaskEdit
Left = 246
Top = 8
Width = 24
Height = 23
AutoSize = False
Color = 16383999
EditMask = '##'
Font.Charset = HANGEUL_CHARSET
Font.Color = clBlack
Font.Height = -15
Font.Name = '굴림체'
Font.Style = [fsBold]
ImeName = '한국어(한글)'
MaxLength = 2
ParentFont = False
TabOrder = 3
Text = ' '
OnKeyDown = med_ActTime2KeyDown
end
end
object Panel2: TPanel
ParentBackground = False
Left = 0
Top = 41
Width = 682
Height = 492
BevelOuter = bvLowered
TabOrder = 2
object agd_Input: TAdvStringGrid
Look = glSoft
EnableWheel = True
ControlLook.NoDisabledButtonLook = True
Left = 1
Top = 1
Width = 680
Height = 490
Cursor = crDefault
TabStop = False
BorderStyle = bsNone
Color = clWhite
ColCount = 30
DefaultColWidth = 90
DefaultRowHeight = 22
DefaultDrawing = False
FixedColor = 15458008
FixedCols = 0
RowCount = 2
FixedRows = 1
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = '굴림체'
Font.Style = []
GridLineWidth = 1
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnClick = agd_InputClick
OnDblClick = agd_InputDblClick
OnDrawCell = agd_InputDrawCell
OnKeyDown = agd_InputKeyDown
GridLineColor = clSilver
ActiveCellShow = False
ActiveCellFont.Charset = DEFAULT_CHARSET
ActiveCellFont.Color = clWindowText
ActiveCellFont.Height = -11
ActiveCellFont.Name = 'MS Sans Serif'
ActiveCellFont.Style = [fsBold]
ActiveCellColor = clGray
Bands.PrimaryColor = clInfoBk
Bands.PrimaryLength = 1
Bands.SecondaryColor = 12249854
Bands.SecondaryLength = 1
Bands.Print = False
AutoNumAlign = False
AutoSize = False
VAlignment = vtaTop
EnhTextSize = False
EnhRowColMove = False
SizeWithForm = False
Multilinecells = False
OnGetCellColor = agd_InputGetCellColor
OnGetAlignment = agd_InputGetAlignment
DragDropSettings.OleAcceptFiles = True
DragDropSettings.OleAcceptText = True
SortSettings.AutoColumnMerge = False
SortSettings.Column = 0
SortSettings.Show = False
SortSettings.IndexShow = False
SortSettings.IndexColor = clYellow
SortSettings.Full = True
SortSettings.SingleColumn = False
SortSettings.IgnoreBlanks = False
SortSettings.BlankPos = blFirst
SortSettings.AutoFormat = True
SortSettings.Direction = sdAscending
SortSettings.FixedCols = False
SortSettings.NormalCellsOnly = False
SortSettings.Row = 0
FloatingFooter.Color = clBtnFace
FloatingFooter.Column = 0
FloatingFooter.FooterStyle = fsFixedLastRow
FloatingFooter.Visible = False
ControlLook.Color = clBlack
ControlLook.CheckSize = 15
ControlLook.RadioSize = 10
ControlLook.ControlStyle = csClassic
ControlLook.FlatButton = False
EnableBlink = False
EnableHTML = True
EnableWheel = True
Flat = False
HintColor = clInfoBk
SelectionColor = clWhite
SelectionTextColor = clNavy
SelectionRectangle = False
SelectionResizer = False
SelectionRTFKeep = False
HintShowCells = False
HintShowLargeText = False
HintShowSizing = False
PrintSettings.FooterSize = 0
PrintSettings.HeaderSize = 0
PrintSettings.Time = ppNone
PrintSettings.Date = ppNone
PrintSettings.DateFormat = 'dd/mm/yyyy'
PrintSettings.PageNr = ppNone
PrintSettings.Title = ppNone
PrintSettings.Font.Charset = DEFAULT_CHARSET
PrintSettings.Font.Color = clWindowText
PrintSettings.Font.Height = -11
PrintSettings.Font.Name = 'MS Sans Serif'
PrintSettings.Font.Style = []
PrintSettings.HeaderFont.Charset = DEFAULT_CHARSET
PrintSettings.HeaderFont.Color = clWindowText
PrintSettings.HeaderFont.Height = -11
PrintSettings.HeaderFont.Name = 'MS Sans Serif'
PrintSettings.HeaderFont.Style = []
PrintSettings.FooterFont.Charset = DEFAULT_CHARSET
PrintSettings.FooterFont.Color = clWindowText
PrintSettings.FooterFont.Height = -11
PrintSettings.FooterFont.Name = 'MS Sans Serif'
PrintSettings.FooterFont.Style = []
PrintSettings.Borders = pbNoborder
PrintSettings.BorderStyle = psSolid
PrintSettings.Centered = False
PrintSettings.RepeatFixedRows = False
PrintSettings.RepeatFixedCols = False
PrintSettings.LeftSize = 0
PrintSettings.RightSize = 0
PrintSettings.ColumnSpacing = 0
PrintSettings.RowSpacing = 0
PrintSettings.TitleSpacing = 0
PrintSettings.Orientation = poPortrait
PrintSettings.PageNumberOffset = 0
PrintSettings.MaxPagesOffset = 0
PrintSettings.FixedWidth = 0
PrintSettings.FixedHeight = 0
PrintSettings.UseFixedHeight = False
PrintSettings.UseFixedWidth = False
PrintSettings.FitToPage = fpNever
PrintSettings.PageNumSep = '/'
PrintSettings.NoAutoSize = False
PrintSettings.NoAutoSizeRow = False
PrintSettings.PrintGraphics = False
HTMLSettings.Width = 100
HTMLSettings.XHTML = False
Navigation.AdvanceDirection = adLeftRight
Navigation.InsertPosition = pInsertBefore
Navigation.HomeEndKey = heFirstLastColumn
Navigation.TabToNextAtEnd = False
Navigation.TabAdvanceDirection = adLeftRight
ColumnSize.Location = clRegistry
CellNode.Color = clSilver
CellNode.NodeColor = clBlack
CellNode.ShowTree = False
MaxEditLength = 0
IntelliPan = ipVertical
URLColor = clBlue
URLShow = False
URLFull = False
URLEdit = False
ScrollType = ssNormal
ScrollColor = clNone
ScrollWidth = 17
ScrollSynch = False
ScrollProportional = False
ScrollHints = shNone
OemConvert = False
FixedFooters = 0
FixedRightCols = 0
FixedColWidth = 140
FixedRowHeight = 22
FixedFont.Charset = HANGEUL_CHARSET
FixedFont.Color = clWindowText
FixedFont.Height = -12
FixedFont.Name = '굴림체'
FixedFont.Style = []
FixedAsButtons = False
FloatFormat = '%.2f'
IntegralHeight = False
WordWrap = True
ColumnHeaders.Strings = (
'모니터링 항목'
'Item1'
'Item2'
'Item3'
'Item4'
'Item5'
'Item6')
Lookup = False
LookupCaseSensitive = False
LookupHistory = False
BackGround.Top = 0
BackGround.Left = 0
BackGround.Display = bdTile
BackGround.Cells = bcNormal
Filter = <>
ColWidths = (
140
90
90
90
90
90
90
106
125
111
90
90
90
90
90
90
90
90
90
90
90
90
90
90
90
90
90
90
90
90)
object ugd_Input: TUltraGrid
DrawingStyle = gdsClassic
Left = 304
Top = 144
Width = 353
Height = 313
ColCount = 10
FixedCols = 0
RowCount = 1
FixedRows = 0
ParentShowHint = False
ShowHint = False
TabOrder = 2
Visible = False
end
object pn_Input: TPanel
ParentBackground = False
Left = 204
Top = 30
Width = 229
Height = 91
BevelOuter = bvNone
Caption = ' '
TabOrder = 3
Visible = False
object lb_Col: TLabel
Transparent = False
Left = 136
Top = 56
Width = 36
Height = 12
Caption = 'lb_Col'
Visible = False
end
object lb_Row: TLabel
Transparent = False
Left = 176
Top = 56
Width = 36
Height = 12
Caption = 'lb_Row'
Visible = False
end
object combx_Input: TComboBox
Left = 1
Top = 0
Width = 88
Height = 22
Style = csOwnerDrawFixed
DropDownCount = 20
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = '굴림'
Font.Style = []
ImeName = '한국어 입력 시스템 (IME 2000)'
ItemHeight = 16
ParentFont = False
TabOrder = 0
OnExit = combx_InputExit
OnKeyDown = combx_InputKeyDown
end
object med_Input: TMaskEdit
Left = 17
Top = 32
Width = 88
Height = 23
AutoSize = False
EditMask = '###.##'
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -15
Font.Name = '굴림체'
Font.Style = []
ImeName = '한국어 입력 시스템 (IME 2000)'
MaxLength = 6
ParentFont = False
TabOrder = 1
Text = ' . '
OnExit = combx_InputExit
OnKeyDown = combx_InputKeyDown
end
object cbx_Input: TCheckBox
Left = 38
Top = 67
Width = 75
Height = 17
Caption = 'cbx_Input'
TabOrder = 2
OnExit = combx_InputExit
OnKeyDown = combx_InputKeyDown
end
object combx_Value: TComboBox
Left = 105
Top = 16
Width = 88
Height = 22
Style = csOwnerDrawFixed
DropDownCount = 20
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = '굴림'
Font.Style = []
ImeName = '한국어 입력 시스템 (IME 2000)'
ItemHeight = 16
ParentFont = False
TabOrder = 3
end
end
object agd_Value: TAdvStringGrid
Look = glSoft
EnableWheel = True
ControlLook.NoDisabledButtonLook = True
Left = 368
Top = 192
Width = 241
Height = 217
Cursor = crDefault
TabStop = False
BorderStyle = bsNone
Color = clWhite
ColCount = 30
DefaultColWidth = 90
DefaultRowHeight = 22
DefaultDrawing = False
FixedColor = 15458008
FixedCols = 0
RowCount = 2
FixedRows = 1
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = '굴림체'
Font.Style = []
GridLineWidth = 1
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 4
Visible = False
GridLineColor = clSilver
ActiveCellShow = False
ActiveCellFont.Charset = DEFAULT_CHARSET
ActiveCellFont.Color = clWindowText
ActiveCellFont.Height = -11
ActiveCellFont.Name = 'MS Sans Serif'
ActiveCellFont.Style = [fsBold]
ActiveCellColor = clGray
Bands.PrimaryColor = clInfoBk
Bands.PrimaryLength = 1
Bands.SecondaryColor = 12249854
Bands.SecondaryLength = 1
Bands.Print = False
AutoNumAlign = False
AutoSize = False
VAlignment = vtaTop
EnhTextSize = False
EnhRowColMove = False
SizeWithForm = False
Multilinecells = False
OnGetCellColor = agd_InputGetCellColor
DragDropSettings.OleAcceptFiles = True
DragDropSettings.OleAcceptText = True
SortSettings.AutoColumnMerge = False
SortSettings.Column = 0
SortSettings.Show = False
SortSettings.IndexShow = False
SortSettings.IndexColor = clYellow
SortSettings.Full = True
SortSettings.SingleColumn = False
SortSettings.IgnoreBlanks = False
SortSettings.BlankPos = blFirst
SortSettings.AutoFormat = True
SortSettings.Direction = sdAscending
SortSettings.FixedCols = False
SortSettings.NormalCellsOnly = False
SortSettings.Row = 0
FloatingFooter.Color = clBtnFace
FloatingFooter.Column = 0
FloatingFooter.FooterStyle = fsFixedLastRow
FloatingFooter.Visible = False
ControlLook.Color = clBlack
ControlLook.CheckSize = 15
ControlLook.RadioSize = 10
ControlLook.ControlStyle = csClassic
ControlLook.FlatButton = False
EnableBlink = False
EnableHTML = True
EnableWheel = True
Flat = False
HintColor = clInfoBk
SelectionColor = clWhite
SelectionTextColor = clNavy
SelectionRectangle = False
SelectionResizer = False
SelectionRTFKeep = False
HintShowCells = False
HintShowLargeText = False
HintShowSizing = False
PrintSettings.FooterSize = 0
PrintSettings.HeaderSize = 0
PrintSettings.Time = ppNone
PrintSettings.Date = ppNone
PrintSettings.DateFormat = 'dd/mm/yyyy'
PrintSettings.PageNr = ppNone
PrintSettings.Title = ppNone
PrintSettings.Font.Charset = DEFAULT_CHARSET
PrintSettings.Font.Color = clWindowText
PrintSettings.Font.Height = -11
PrintSettings.Font.Name = 'MS Sans Serif'
PrintSettings.Font.Style = []
PrintSettings.HeaderFont.Charset = DEFAULT_CHARSET
PrintSettings.HeaderFont.Color = clWindowText
PrintSettings.HeaderFont.Height = -11
PrintSettings.HeaderFont.Name = 'MS Sans Serif'
PrintSettings.HeaderFont.Style = []
PrintSettings.FooterFont.Charset = DEFAULT_CHARSET
PrintSettings.FooterFont.Color = clWindowText
PrintSettings.FooterFont.Height = -11
PrintSettings.FooterFont.Name = 'MS Sans Serif'
PrintSettings.FooterFont.Style = []
PrintSettings.Borders = pbNoborder
PrintSettings.BorderStyle = psSolid
PrintSettings.Centered = False
PrintSettings.RepeatFixedRows = False
PrintSettings.RepeatFixedCols = False
PrintSettings.LeftSize = 0
PrintSettings.RightSize = 0
PrintSettings.ColumnSpacing = 0
PrintSettings.RowSpacing = 0
PrintSettings.TitleSpacing = 0
PrintSettings.Orientation = poPortrait
PrintSettings.PageNumberOffset = 0
PrintSettings.MaxPagesOffset = 0
PrintSettings.FixedWidth = 0
PrintSettings.FixedHeight = 0
PrintSettings.UseFixedHeight = False
PrintSettings.UseFixedWidth = False
PrintSettings.FitToPage = fpNever
PrintSettings.PageNumSep = '/'
PrintSettings.NoAutoSize = False
PrintSettings.NoAutoSizeRow = False
PrintSettings.PrintGraphics = False
HTMLSettings.Width = 100
HTMLSettings.XHTML = False
Navigation.AdvanceDirection = adLeftRight
Navigation.InsertPosition = pInsertBefore
Navigation.HomeEndKey = heFirstLastColumn
Navigation.TabToNextAtEnd = False
Navigation.TabAdvanceDirection = adLeftRight
ColumnSize.Location = clRegistry
CellNode.Color = clSilver
CellNode.NodeColor = clBlack
CellNode.ShowTree = False
MaxEditLength = 0
IntelliPan = ipVertical
URLColor = clBlue
URLShow = False
URLFull = False
URLEdit = False
ScrollType = ssNormal
ScrollColor = clNone
ScrollWidth = 17
ScrollSynch = False
ScrollProportional = False
ScrollHints = shNone
OemConvert = False
FixedFooters = 0
FixedRightCols = 0
FixedColWidth = 140
FixedRowHeight = 22
FixedFont.Charset = HANGEUL_CHARSET
FixedFont.Color = clWindowText
FixedFont.Height = -12
FixedFont.Name = '굴림체'
FixedFont.Style = []
FixedAsButtons = False
FloatFormat = '%.2f'
IntegralHeight = False
WordWrap = True
ColumnHeaders.Strings = (
'모니터링 항목'
'Item1'
'Item2'
'Item3'
'Item4'
'Item5'
'Item6')
Lookup = False
LookupCaseSensitive = False
LookupHistory = False
BackGround.Top = 0
BackGround.Left = 0
BackGround.Display = bdTile
BackGround.Cells = bcNormal
Filter = <>
ColWidths = (
140
90
90
90
90
90
90
106
125
111
90
90
90
90
90
90
90
90
90
90
90
90
90
90
90
90
90
90
90
90)
end
end
end
object ImageList1: TImageList
BlendColor = clHighlightText
BkColor = 14811135
AllocBy = 100
Height = 21
Width = 41
Left = 228
Top = 512
Bitmap = {
494C010109006400640029001500FFFFE100FF10FFFFFFFFFFFFFFFF424D3600
0000000000003600000028000000A40000000D02000001002000000000005041
0500000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000