-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMDN110UM.dfm
5729 lines (5729 loc) · 214 KB
/
MDN110UM.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 MDN110FM: TMDN110FM
Left = 35
Top = 200
Caption = '[MDN110FM] ICU '#53685#54633' '#44036#54840#44592#47197#51648
ClientHeight = 986
ClientWidth = 1555
Color = clBtnFace
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = #44404#47548#52404
Font.Style = []
FormStyle = fsStayOnTop
OldCreateOrder = False
Position = poMainFormCenter
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object pn_ICU: TPanel
Left = 0
Top = 0
Width = 1555
Height = 963
Align = alClient
AutoSize = True
ParentBackground = False
ParentShowHint = False
ShowHint = True
TabOrder = 1
DesignSize = (
1555
963)
object pn_List1: TPanel
Left = 1
Top = 52
Width = 1560
Height = 916
Anchors = [akLeft]
BevelInner = bvLowered
ParentBackground = False
TabOrder = 0
object asg_IcuMon: TAdvStringGrid
Left = 2
Top = 2
Width = 1556
Height = 912
Cursor = crDefault
Align = alClient
Color = clWhite
ColCount = 26
Ctl3D = False
DefaultColWidth = 58
DefaultRowHeight = 20
DrawingStyle = gdsClassic
FixedColor = 8763768
FixedCols = 2
RowCount = 2
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = #44404#47548#52404
Font.Style = []
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goDrawFocusSelected, goEditing]
ParentCtl3D = False
ParentFont = False
ParentShowHint = False
PopupMenu = Popup_Act
ScrollBars = ssBoth
ShowHint = False
TabOrder = 0
OnDrawCell = asg_IcuMonDrawCell
OnExit = asg_IcuMonExit
OnGetEditMask = asg_IcuMonGetEditMask
OnKeyPress = asg_IcuMonKeyPress
OnMouseMove = asg_IcuMonMouseMove
OnSelectCell = asg_IcuMonSelectCell
HoverRowCells = [hcNormal, hcSelected]
OnGetCellColor = asg_IcuMonGetCellColor
OnGetAlignment = asg_IcuMonGetAlignment
OnCellChanging = asg_IcuMonCellChanging
OnClickCell = asg_IcuMonClickCell
OnGetEditorType = asg_IcuMonGetEditorType
OnEditingDone = asg_IcuMonEditingDone
ActiveCellFont.Charset = DEFAULT_CHARSET
ActiveCellFont.Color = clWindowText
ActiveCellFont.Height = -11
ActiveCellFont.Name = 'MS Sans Serif'
ActiveCellFont.Style = [fsBold]
Bands.SecondaryColor = 12249854
CellNode.ShowTree = False
ColumnHeaders.Strings = (
'')
ControlLook.FixedGradientHoverFrom = clGray
ControlLook.FixedGradientHoverTo = clWhite
ControlLook.FixedGradientDownFrom = clGray
ControlLook.FixedGradientDownTo = clSilver
ControlLook.ControlStyle = csClassic
ControlLook.DropDownHeader.Font.Charset = DEFAULT_CHARSET
ControlLook.DropDownHeader.Font.Color = clWindowText
ControlLook.DropDownHeader.Font.Height = -11
ControlLook.DropDownHeader.Font.Name = 'Tahoma'
ControlLook.DropDownHeader.Font.Style = []
ControlLook.DropDownHeader.Visible = True
ControlLook.DropDownHeader.Buttons = <>
ControlLook.DropDownFooter.Font.Charset = DEFAULT_CHARSET
ControlLook.DropDownFooter.Font.Color = clWindowText
ControlLook.DropDownFooter.Font.Height = -11
ControlLook.DropDownFooter.Font.Name = 'Tahoma'
ControlLook.DropDownFooter.Font.Style = []
ControlLook.DropDownFooter.Visible = True
ControlLook.DropDownFooter.Buttons = <>
ControlLook.NoDisabledButtonLook = True
EnhRowColMove = False
Filter = <>
FilterDropDown.Font.Charset = DEFAULT_CHARSET
FilterDropDown.Font.Color = clWindowText
FilterDropDown.Font.Height = -11
FilterDropDown.Font.Name = 'Tahoma'
FilterDropDown.Font.Style = []
FilterDropDownClear = '(All)'
FilterEdit.TypeNames.Strings = (
'Starts with'
'Ends with'
'Contains'
'Not contains'
'Equal'
'Not equal'
'Larger than'
'Smaller than'
'Clear')
FixedColWidth = 85
FixedRowHeight = 20
FixedFont.Charset = HANGEUL_CHARSET
FixedFont.Color = clWindowText
FixedFont.Height = -12
FixedFont.Name = #44404#47548#52404
FixedFont.Style = []
Flat = True
FloatFormat = '%.2f'
HoverButtons.Buttons = <>
HoverButtons.Position = hbLeftFromColumnLeft
HTMLSettings.ImageFolder = 'images'
HTMLSettings.ImageBaseName = 'img'
Look = glStandard
MouseActions.WheelIncrement = 1
MouseActions.WheelAction = waMoveSelection
PrintSettings.DateFormat = 'dd/mm/yyyy'
PrintSettings.Font.Charset = DEFAULT_CHARSET
PrintSettings.Font.Color = clWindowText
PrintSettings.Font.Height = -11
PrintSettings.Font.Name = 'MS Sans Serif'
PrintSettings.Font.Style = []
PrintSettings.FixedFont.Charset = DEFAULT_CHARSET
PrintSettings.FixedFont.Color = clWindowText
PrintSettings.FixedFont.Height = -11
PrintSettings.FixedFont.Name = 'Tahoma'
PrintSettings.FixedFont.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.Centered = False
PrintSettings.PageNumSep = '/'
ScrollWidth = 16
SearchFooter.Font.Charset = DEFAULT_CHARSET
SearchFooter.Font.Color = clWindowText
SearchFooter.Font.Height = -11
SearchFooter.Font.Name = 'Tahoma'
SearchFooter.Font.Style = []
SelectionColor = 8641535
SelectionTextColor = clNavy
SizeWithForm = True
SortSettings.DefaultFormat = ssAutomatic
SortSettings.Column = 0
VAlignment = vtaCenter
Version = '7.8.6.0'
ColWidths = (
85
85
54
54
54
54
52
54
54
54
54
54
54
54
54
54
54
54
54
54
54
54
54
54
54
50)
object pn_Line2: TPanel
Left = -527
Top = 39
Width = 2066
Height = 2
BevelOuter = bvNone
Color = clBlue
ParentBackground = False
TabOrder = 2
end
object apn_InsActing: TAdvPanel
Left = 703
Top = 604
Width = 314
Height = 118
BevelInner = bvLowered
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = #44404#47548#52404
Font.Style = []
ParentFont = False
TabOrder = 3
UseDockManager = True
Visible = False
Version = '2.4.1.0'
CanMove = True
Caption.Color = clGreen
Caption.ColorTo = clNone
Caption.Font.Charset = DEFAULT_CHARSET
Caption.Font.Color = clHighlightText
Caption.Font.Height = -11
Caption.Font.Name = 'MS Sans Serif'
Caption.Font.Style = [fsBold]
Caption.Height = 28
Caption.Indent = 7
Caption.ShadeType = stHShade
Caption.Text = 'ICU '#49688#54665#50696#51221' '#46321#47197'<B></B>'
Caption.TopIndent = 6
Caption.Visible = True
DoubleBuffered = True
StatusBar.Font.Charset = DEFAULT_CHARSET
StatusBar.Font.Color = clWindowText
StatusBar.Font.Height = -11
StatusBar.Font.Name = 'Tahoma'
StatusBar.Font.Style = []
Text = ''
FullHeight = 0
object Shape2: TShape
Left = 8
Top = 62
Width = 65
Height = 22
Brush.Color = 13166834
Pen.Color = clGray
end
object Label12: TLabel
Left = 15
Top = 67
Width = 52
Height = 12
Caption = #53945#44592#49324#54637
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -12
Font.Name = #44404#47548#52404
Font.Style = [fsBold]
ParentFont = False
Transparent = True
Layout = tlCenter
end
object Shape1: TShape
Left = 8
Top = 36
Width = 65
Height = 22
Brush.Color = 13166834
Pen.Color = clGray
end
object Label15: TLabel
Left = 15
Top = 41
Width = 52
Height = 12
Caption = #54637#47785#49440#53469
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -12
Font.Name = #44404#47548#52404
Font.Style = [fsBold]
ParentFont = False
Transparent = True
Layout = tlCenter
end
object Panel2: TPanel
Left = 2
Top = 87
Width = 310
Height = 29
Align = alBottom
BevelInner = bvLowered
ParentBackground = False
TabOrder = 0
object bbt_InsActing: TBitBtn
Left = 186
Top = 3
Width = 60
Height = 25
Hint = #54644#45817' '#49884#44036#45824' '#49688#54665#50696#51221' '#54637#47785#46321#47197'('#49353#54364#44592')'
Caption = #46321#47197
Font.Charset = HANGEUL_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = #44404#47548#52404
Font.Style = []
Glyph.Data = {
E6040000424DE604000000000000360000002800000014000000140000000100
180000000000B004000000000000000000000000000000000000FFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00480000420000440000
4900FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005D0000FFFF1DBA2F005D00FFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFF004800004000005D003ED5501BB532005D00004400004900
FFFFFFFFFFFFFFFFFFFFFFFF00547E003C5D003A5D003A5D003A5D003A5D003A
5DFFFFFF005D0000FFFF11A1030EA20E0EA6180FAA1B11AE17005D00FFFFFFFF
FFFFFFFFFFFFFFFF00629600D6FF00FFFF00FFFF00FFFF00FFFF00FFFFFFFFFF
005D0000FFFF00FFFF00FFFF1BAF2823BA2700FFFF005D00FFFFFFFFFFFFFFFF
FFFFFFFF00609308D1FF00E6FF00E5FF00E5FF00E5FF00E5FFFFFFFF005D0000
5D00005D0000FFFF1EAD1C005D00005D00005D00FFFFFFFFFFFFFFFFFFFFFFFF
0060931BD4FF00D4FF00D4FF00D4FF00D4FF00D4FF96EDFFFFFFFFFFFFFF005D
0000FFFF00FFFF005D00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0060932B
D6FF00CBFF00CCFF00CCFF00CCFF00CCFF00CCFF00CCFFFFFFFF005D00005D00
005D00005D00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0060933BD7FF00C9
FF00C9FF00C9FF00C9FF00CAFF00CCFF00CCFF96EAFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00609345D8FFFFFFFFFFFFFF
FFFFFFFFFFFF8CEBFF00CAFF00CCFF00CCFF00CCFF00CCFF00D2FF006093FFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0060935FDEFF00669C006AA0006AA000
689E3DAAD092EDFF00C8FF00C9FF00C9FF00C9FF00CFFF006093FFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFF00609372E0FF0097CB009BCE009BCE009ACD0099
CD3AB0D8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005E94FFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFF00609383E0FF009DD100A1D400A1D400A1D400A0D300A3D7
008ABF008AC0008AC0008AC0008EC3006296FFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFF00609395E2FF00B1E400B3E600B3E600B3E600B6E900B8EB00B9EC00
B9EC00B9EC00B9EC00BDF0006295FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
006094AEE7FF00C9FD00CAFD00CAFD00CCFF00CCFF0060930062950062950062
95006295006295006598FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00
6094006094006194006194006194006194FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFF}
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnClick = bbt_InsActingClick
end
object bbt_ActExit: TBitBtn
Left = 246
Top = 3
Width = 60
Height = 25
Hint = #49688#54665#50696#51221' '#45803#44592
Caption = #45803#44592
Font.Charset = HANGEUL_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = #44404#47548#52404
Font.Style = []
Glyph.Data = {
22050000424D2205000000000000360000002800000014000000150000000100
180000000000EC04000000000000000000000000000000000000FFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000093000093FFFFFFFFFFFF00
0093000093FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFF0000930029FF0033FF0000930000930033FF0029
FF000093FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFF0029CAFFCCFF0029FF0033FF0033FF0029FFFFCCFF0029CA
FFFFFFFFFFFFFFFFFFFFFFFF00547E003C5D003A5D003A5D003A5D003A5D003A
5D96AEBCFFFFFF0029CA0C4CFF0C4CFF0C4CFF0C4CFF0029CAFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFF00629600D6FF00FFFF00FFFF00FFFF00FFFF00FFFF96FFFF
FFFFFF000093146CFF146CFF146CFF146CFF000093FFFFFFFFFFFFFFFFFFFFFF
FFFFFFFF00609308D1FF00E6FF00E5FF00E5FF00E5FF00E5FFFFFFFF00009320
83FF2083FFFFCCFFFFCCFF2083FF2083FF000093FFFFFFFFFFFFFFFFFFFFFFFF
0060931BD4FF00D4FF00D4FF00D4FF00D4FF00D4FFFFFFFF0029CAFFCCFFFFCC
FF0029CA0029CAFFCCFFFFCCFF0029CAFFFFFFFFFFFFFFFFFFFFFFFF0060932B
D6FF00CBFF00CCFF00CCFF00CCFF00CCFF96EAFFFEFEFF0029CA0029CAFFFFFF
FFFFFF0029CA0029CAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0060933BD7FF00C9
FF00C9FF00C9FF00C9FF00CAFF00CCFF96EAFFFFFFFFFFFFFF96EAFF96ECFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00609345D8FFFFFFFFFFFFFF
FFFFFFFFFFFF8CEBFF00CAFF00CCFF00CCFF00CCFF00CCFF00D2FF006093FFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0060935FDEFF00669C006AA0006AA000
689E3DAAD092EDFF00C8FF00C9FF00C9FF00C9FF00CFFF006093FFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFF00609372E0FF0097CB009BCE009BCE009ACD0099
CD3AB0D8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005E94FFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFF00609383E0FF009DD100A1D400A1D400A1D400A0D300A3D7
008ABF008AC0008AC0008AC0008EC3006296FFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFF00609395E2FF00B1E400B3E600B3E600B3E600B6E900B8EB00B9EC00
B9EC00B9EC00B9EC00BDF0006295FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
006094AEE7FF00C9FD00CAFD00CAFD00CCFF00CCFF0060930062950062950062
95006295006295006598FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00
6094006094006194006194006194006194FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFF}
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnClick = bbt_ActExitClick
end
end
object ed_ActRemark: TEdit
Left = 75
Top = 62
Width = 235
Height = 22
AutoSelect = False
AutoSize = False
Color = 16056319
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = #44404#47548#52404
Font.Style = []
ImeName = #54620#44397#50612'('#54620#44544')'
MaxLength = 30
ParentFont = False
TabOrder = 1
end
object combx_ActList: TComboBox
Left = 75
Top = 37
Width = 236
Height = 21
Cursor = crHandPoint
Style = csDropDownList
Color = clWhite
DropDownCount = 20
Font.Charset = HANGEUL_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = #44404#47548#52404
Font.Style = []
ImeName = #54620#44397#50612'('#54620#44544')'
MaxLength = 30
ParentFont = False
TabOrder = 2
Items.Strings = (
''
#53945#44592#49324#54637#51077#47141
'B/S '#52769#51221
'')
end
end
object apn_Bst: TAdvPanel
Left = 1023
Top = 604
Width = 314
Height = 199
BevelInner = bvLowered
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = #44404#47548#52404
Font.Style = []
ParentFont = False
TabOrder = 4
UseDockManager = True
Visible = False
Version = '2.4.1.0'
CanMove = True
Caption.Color = clGreen
Caption.ColorTo = clNone
Caption.Font.Charset = DEFAULT_CHARSET
Caption.Font.Color = clHighlightText
Caption.Font.Height = -11
Caption.Font.Name = 'MS Sans Serif'
Caption.Font.Style = [fsBold]
Caption.Height = 28
Caption.Indent = 7
Caption.ShadeType = stHShade
Caption.Text = 'B/S '#52769#51221#45236#50669' '#51312#54924'<B></B>'
Caption.TopIndent = 6
Caption.Visible = True
DoubleBuffered = True
StatusBar.Font.Charset = DEFAULT_CHARSET
StatusBar.Font.Color = clWindowText
StatusBar.Font.Height = -11
StatusBar.Font.Name = 'Tahoma'
StatusBar.Font.Style = []
Text = ''
FullHeight = 0
object Panel3: TPanel
Left = 2
Top = 168
Width = 310
Height = 29
Align = alBottom
BevelInner = bvLowered
ParentBackground = False
TabOrder = 0
object lb_BsStatus: TLabel
Left = 5
Top = 9
Width = 198
Height = 12
Caption = #54644#45817#51068#51088#51032' B/S'#45236#50669#51060' '#50630#49845#45768#45796'.'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -12
Font.Name = #44404#47548#52404
Font.Style = [fsBold]
ParentFont = False
Transparent = True
Layout = tlCenter
end
object bbt_BstClose: TBitBtn
Left = 246
Top = 3
Width = 60
Height = 25
Hint = 'B/S '#51312#54924' '#45803#44592
Caption = #45803#44592
Font.Charset = HANGEUL_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = #44404#47548#52404
Font.Style = []
Glyph.Data = {
22050000424D2205000000000000360000002800000014000000150000000100
180000000000EC04000000000000000000000000000000000000FFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000093000093FFFFFFFFFFFF00
0093000093FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFF0000930029FF0033FF0000930000930033FF0029
FF000093FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFF0029CAFFCCFF0029FF0033FF0033FF0029FFFFCCFF0029CA
FFFFFFFFFFFFFFFFFFFFFFFF00547E003C5D003A5D003A5D003A5D003A5D003A
5D96AEBCFFFFFF0029CA0C4CFF0C4CFF0C4CFF0C4CFF0029CAFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFF00629600D6FF00FFFF00FFFF00FFFF00FFFF00FFFF96FFFF
FFFFFF000093146CFF146CFF146CFF146CFF000093FFFFFFFFFFFFFFFFFFFFFF
FFFFFFFF00609308D1FF00E6FF00E5FF00E5FF00E5FF00E5FFFFFFFF00009320
83FF2083FFFFCCFFFFCCFF2083FF2083FF000093FFFFFFFFFFFFFFFFFFFFFFFF
0060931BD4FF00D4FF00D4FF00D4FF00D4FF00D4FFFFFFFF0029CAFFCCFFFFCC
FF0029CA0029CAFFCCFFFFCCFF0029CAFFFFFFFFFFFFFFFFFFFFFFFF0060932B
D6FF00CBFF00CCFF00CCFF00CCFF00CCFF96EAFFFEFEFF0029CA0029CAFFFFFF
FFFFFF0029CA0029CAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0060933BD7FF00C9
FF00C9FF00C9FF00C9FF00CAFF00CCFF96EAFFFFFFFFFFFFFF96EAFF96ECFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00609345D8FFFFFFFFFFFFFF
FFFFFFFFFFFF8CEBFF00CAFF00CCFF00CCFF00CCFF00CCFF00D2FF006093FFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0060935FDEFF00669C006AA0006AA000
689E3DAAD092EDFF00C8FF00C9FF00C9FF00C9FF00CFFF006093FFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFF00609372E0FF0097CB009BCE009BCE009ACD0099
CD3AB0D8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005E94FFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFF00609383E0FF009DD100A1D400A1D400A1D400A0D300A3D7
008ABF008AC0008AC0008AC0008EC3006296FFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFF00609395E2FF00B1E400B3E600B3E600B3E600B6E900B8EB00B9EC00
B9EC00B9EC00B9EC00BDF0006295FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
006094AEE7FF00C9FD00CAFD00CAFD00CCFF00CCFF0060930062950062950062
95006295006295006598FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00
6094006094006194006194006194006194FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFF}
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnClick = bbt_BstCloseClick
end
end
object ugd_BsData: TUltraGrid
Left = 2
Top = 26
Width = 311
Height = 142
Cursor = crHandPoint
BorderStyle = bsNone
Color = 15857660
DefaultRowHeight = 20
DrawingStyle = gdsClassic
FixedColor = 13882323
FixedCols = 0
RowCount = 2
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = #44404#47548#52404
Font.Style = []
GridLineWidth = 0
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRowSelect]
ParentFont = False
ParentShowHint = False
ScrollBars = ssVertical
ShowHint = False
TabOrder = 1
OnDblClick = ugd_BsDataDblClick
OnDrawCell = ugd_BsDataDrawCell
FixedAlignment = taCenter
FixedFontBold = False
GridRowColor = 14740472
Title = #52769#51221#51068#49884'|'#52769#51221#52824'|'#51064#49808#47536' '#48143' '#44221#44396#54792#45817#44053#54616#51228
ColWidths = (
106
40
167
64
64)
end
end
object apn_IoChk: TAdvPanel
Left = 1023
Top = 675
Width = 315
Height = 199
BevelInner = bvLowered
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = #44404#47548#52404
Font.Style = []
ParentFont = False
TabOrder = 5
UseDockManager = True
Visible = False
Version = '2.4.1.0'
CanMove = True
Caption.Color = clMaroon
Caption.ColorTo = clNone
Caption.Font.Charset = DEFAULT_CHARSET
Caption.Font.Color = clHighlightText
Caption.Font.Height = -11
Caption.Font.Name = 'MS Sans Serif'
Caption.Font.Style = [fsBold]
Caption.Height = 28
Caption.Indent = 7
Caption.ShadeType = stHShade
Caption.Text = 'I/O '#52769#51221#45236#50669' '#51312#54924'<B></B>'
Caption.TopIndent = 6
Caption.Visible = True
DoubleBuffered = True
StatusBar.Font.Charset = DEFAULT_CHARSET
StatusBar.Font.Color = clWindowText
StatusBar.Font.Height = -11
StatusBar.Font.Name = 'Tahoma'
StatusBar.Font.Style = []
Text = ''
FullHeight = 0
object Panel4: TPanel
Left = 2
Top = 168
Width = 311
Height = 29
Align = alBottom
BevelInner = bvLowered
ParentBackground = False
TabOrder = 0
object lb_IoStatus: TLabel
Left = 5
Top = 9
Width = 198
Height = 12
Caption = #54644#45817#51068#51088#51032' I/O'#45236#50669#51060' '#50630#49845#45768#45796'.'
Font.Charset = DEFAULT_CHARSET
Font.Color = clNavy
Font.Height = -12
Font.Name = #44404#47548#52404
Font.Style = [fsBold]
ParentFont = False
Transparent = True
Layout = tlCenter
end
object bbt_IoClose: TBitBtn
Left = 246
Top = 3
Width = 60
Height = 25
Hint = 'I/O '#51312#54924' '#45803#44592
Caption = #45803#44592
Font.Charset = HANGEUL_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = #44404#47548#52404
Font.Style = []
Glyph.Data = {
22050000424D2205000000000000360000002800000014000000150000000100
180000000000EC04000000000000000000000000000000000000FFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000093000093FFFFFFFFFFFF00
0093000093FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFF0000930029FF0033FF0000930000930033FF0029
FF000093FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFF0029CAFFCCFF0029FF0033FF0033FF0029FFFFCCFF0029CA
FFFFFFFFFFFFFFFFFFFFFFFF00547E003C5D003A5D003A5D003A5D003A5D003A
5D96AEBCFFFFFF0029CA0C4CFF0C4CFF0C4CFF0C4CFF0029CAFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFF00629600D6FF00FFFF00FFFF00FFFF00FFFF00FFFF96FFFF
FFFFFF000093146CFF146CFF146CFF146CFF000093FFFFFFFFFFFFFFFFFFFFFF
FFFFFFFF00609308D1FF00E6FF00E5FF00E5FF00E5FF00E5FFFFFFFF00009320
83FF2083FFFFCCFFFFCCFF2083FF2083FF000093FFFFFFFFFFFFFFFFFFFFFFFF
0060931BD4FF00D4FF00D4FF00D4FF00D4FF00D4FFFFFFFF0029CAFFCCFFFFCC
FF0029CA0029CAFFCCFFFFCCFF0029CAFFFFFFFFFFFFFFFFFFFFFFFF0060932B
D6FF00CBFF00CCFF00CCFF00CCFF00CCFF96EAFFFEFEFF0029CA0029CAFFFFFF
FFFFFF0029CA0029CAFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0060933BD7FF00C9
FF00C9FF00C9FF00C9FF00CAFF00CCFF96EAFFFFFFFFFFFFFF96EAFF96ECFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00609345D8FFFFFFFFFFFFFF
FFFFFFFFFFFF8CEBFF00CAFF00CCFF00CCFF00CCFF00CCFF00D2FF006093FFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0060935FDEFF00669C006AA0006AA000
689E3DAAD092EDFF00C8FF00C9FF00C9FF00C9FF00CFFF006093FFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFF00609372E0FF0097CB009BCE009BCE009ACD0099
CD3AB0D8FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF005E94FFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFF00609383E0FF009DD100A1D400A1D400A1D400A0D300A3D7
008ABF008AC0008AC0008AC0008EC3006296FFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFF00609395E2FF00B1E400B3E600B3E600B3E600B6E900B8EB00B9EC00
B9EC00B9EC00B9EC00BDF0006295FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
006094AEE7FF00C9FD00CAFD00CAFD00CCFF00CCFF0060930062950062950062
95006295006295006598FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00
6094006094006194006194006194006194FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFF}
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnClick = bbt_IoCloseClick
end
end
object ugd_IoData: TUltraGrid
Left = 3
Top = 26
Width = 311
Height = 142
Cursor = crHandPoint
BorderStyle = bsNone
Color = 15857660
DefaultRowHeight = 20
DrawingStyle = gdsClassic
FixedColor = 13882323
FixedCols = 0
RowCount = 2
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = #44404#47548#52404
Font.Style = []
GridLineWidth = 0
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRowSelect]
ParentFont = False
ParentShowHint = False
ScrollBars = ssVertical
ShowHint = False
TabOrder = 1
OnDblClick = ugd_IoDataDblClick
OnDrawCell = ugd_IoDataDrawCell
FixedAlignment = taCenter
FixedFontBold = False
GridRowColor = 14740472
Title = #52769#51221#51068#49884'|'#52769#51221#54637#47785'|'#50857#47049
ColWidths = (
106
149
57
64
64)
end
end
end
end
object pn_If: TPanel
Left = 2
Top = 54
Width = 1556
Height = 454
Color = clActiveBorder
ParentBackground = False
ParentShowHint = False
ShowHint = True
TabOrder = 1
Visible = False
object bbt_VS: TBitBtn
Left = -8
Top = 76
Width = 87
Height = 25
Cursor = crHandPoint
Caption = ' V/S '#52769#51221
Font.Charset = HANGEUL_CHARSET
Font.Color = clBlue
Font.Height = -12
Font.Name = #44404#47548#52404
Font.Style = [fsBold]
Glyph.Data = {
76010000424D7601000000000000760000002800000020000000100000000100
04000000000000010000120B0000120B00001000000000000000000000000000
800000800000008080008000000080008000808000007F7F7F00BFBFBF000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00337333733373
3373337F3F7F3F7F3F7F33737373737373733F7F7F7F7F7F7F7F770000000000
000077777777777777773303333333333333337FF333333F33333709333333C3
333337773F3FF373F333330393993C3C33333F7F7F77F7F7FFFF77079797977C
77777777777777777777330339339333C333337FF73373F37F33370C333C3933
933337773F3737F37FF33303C3C33939C9333F7F7F7FF7F777FF7707C7C77797
7C97777777777777777733033C3333333C33337F37F33333373F37033C333333
33C3377F37333333337333033333333333333F7FFFFFFFFFFFFF770777777777
7777777777777777777733333333333333333333333333333333}
NumGlyphs = 2
ParentFont = False
TabOrder = 0
Visible = False
end
object chr_VS: TChart
Left = 1
Top = 1
Width = 1554
Height = 452
BackWall.Color = 15328747
BackWall.Transparent = False
Gradient.EndColor = 8763768
Gradient.Visible = True
Legend.Alignment = laLeft
Legend.ColorWidth = 35
Legend.HorizMargin = 3
Legend.LegendStyle = lsSeries
Legend.Shadow.HorizSize = 1
Legend.Shadow.VertSize = 1
Legend.Symbol.Width = 35
Legend.TextStyle = ltsPlain
Legend.TopPos = 59
MarginBottom = 2
MarginLeft = 2
MarginRight = 0
MarginTop = 2
Title.Text.Strings = (
'')
Title.Visible = False
Title.AdjustFrame = False
BottomAxis.Automatic = False
BottomAxis.AutomaticMaximum = False
BottomAxis.AutomaticMinimum = False
BottomAxis.DateTimeFormat = 'hh:nn'
BottomAxis.ExactDateTime = False
BottomAxis.Grid.Style = psDashDotDot
BottomAxis.Grid.SmallDots = True
BottomAxis.Increment = 0.041666666666666700
BottomAxis.LabelsSeparation = 0
BottomAxis.Maximum = 25.000000000000000000
ClipPoints = False
LeftAxis.Automatic = False
LeftAxis.AutomaticMaximum = False
LeftAxis.AutomaticMinimum = False
LeftAxis.ExactDateTime = False
LeftAxis.Increment = 10.000000000000000000
LeftAxis.LabelsMultiLine = True
LeftAxis.Maximum = 250.000000000000000000
RightAxis.Automatic = False
RightAxis.AutomaticMaximum = False
RightAxis.AutomaticMinimum = False
RightAxis.ExactDateTime = False
RightAxis.Grid.Visible = False
RightAxis.Increment = 0.500000000000000000
RightAxis.LabelsFormat.Font.Color = clMaroon
RightAxis.Maximum = 39.000000000000000000
RightAxis.Minimum = 34.000000000000000000
RightAxis.PositionPercent = 100.000000000000000000
TopAxis.Visible = False
View3D = False
Zoom.AnimatedSteps = 6
OnAfterDraw = chr_VSAfterDraw
Align = alClient
BevelOuter = bvNone
Color = 7252850
ParentShowHint = False
ShowHint = True
TabOrder = 1
DefaultCanvas = 'TGDIPlusCanvas'
ColorPaletteIndex = 13
object pn_MoniPrd: TPanel
Left = 4
Top = 208
Width = 82
Height = 46
ParentBackground = False
TabOrder = 0
object lb_MoniPrd: TLabel
Left = 1
Top = 1
Width = 80
Height = 20
Align = alTop
Alignment = taCenter
AutoSize = False
Caption = #52769#51221#51452#44592'('#48516')'
Color = 1082210
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindow
Font.Height = -12
Font.Name = #44404#47548#52404
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
Transparent = False
Layout = tlCenter
end
object combx_Moniprd: TComboBox
Left = 6
Top = 23
Width = 43
Height = 19
Hint = #51109#48708'Interface '#52769#51221#51452#44592' '#48320#44221#54980', '#48152#46300#49884' ['#51452#44592#48320#44221']'#51012' '#45580#47084#49436' '#51201#50857#54644#51452#49901#49884#50724'.'
Style = csDropDownList
DropDownCount = 20
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = #44404#47548#52404
Font.Style = []
ImeName = 'Microsoft Office IME 2007'
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
Items.Strings = (
'5'
'10'
'15'
'20'
'25'
'30'
'35'
'40'
'45'
'50'
'55'
'60')
end
object bbt_Moniprd: TBitBtn
Left = 52
Top = 22
Width = 22
Height = 22
Hint = #51064#53552#54168#51060#49828' '#47784#45768#53552#47553' '#51452#44592#48320#44221#49884' '#53364#47533#54616#49464#50836'.'
Glyph.Data = {
6E040000424D6E04000000000000360000002800000013000000120000000100
18000000000038040000CE0E0000C40E00000000000000000000BFBFBFBFBFBF
BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF
BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF000000BFBFBFBFBFBFBFBFBFBF
BFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF0000FF5050FFBFBFBFBFBFBF
BFBFBFBFBFBFBFBFBFBFBFBFBFBFBF000000BFBFBFBFBFBFBFBFBFBFBFBFBFBF
BF000070000070000070BFBFBF0000FF0000FF5050FF5050FF5050FFBFBFBFBF
BFBFBFBFBFBFBFBFBFBFBF000000BFBFBFBFBFBFBFBFBFBFBFBF2F1070000070
0F008F0F00A04030DF0F10FF0F0FFF2020FF3F3FFF5050FF8080FFBFBFBFBFBF
BFBFBFBFBFBFBF000000BFBFBFBFBFBFBFBFBFA09FF00F005F0F006F1F008F1F
009F0F00DF0000FF1010FF2F2FFF4F4FFF6060FF7F7FFFA0A0FFBFBFBFBFBFBF
BFBFBF000000BFBFBFBFBFBF8F8FFF8F8FFF3F308F1F106F2F108020109FBFBF
BF5F5FFF0000FF3F3FFF5F5FFF6060F07F7FF09090F0BFBFBFBFBFBFBFBFBF00
0000BFBFBFBFBFBF8080FF6F6FFFB0B0FFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF
5050FF8080FFBFBFBFBFBFBF1F107F1F0F6F1F0F60BFBFBFBFBFBF000000BFBF
BFB0B0FF5050FF5F5FFF6060FFA0A0FF6F6FFFBFBFBFBFBFBFBFBFBFBFBFBF80
80FFBFBFBFBFBFBF1F00801000700F0060BFBFBFBFBFBF000000BFBFBFAFAFFF
3F3FFF4040FF3F3FFF2020FF6060FFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBFBF
BF5F40C010009F10008F4F3F9FBFBFBFBFBFBF000000BFBFBFBFBFBF3030FF20