12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- object MainForm: TMainForm
- AlignWithMargins = True
- Left = 0
- Top = 0
- Caption = 'Quick Config Demo'
- ClientHeight = 493
- ClientWidth = 720
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Tahoma'
- Font.Style = []
- OldCreateOrder = False
- OnClose = FormClose
- OnCreate = FormCreate
- DesignSize = (
- 720
- 493)
- PixelsPerInch = 96
- TextHeight = 13
- object meInfo: TMemo
- Left = 8
- Top = 8
- Width = 704
- Height = 441
- Anchors = [akLeft, akTop, akRight, akBottom]
- ReadOnly = True
- ScrollBars = ssBoth
- TabOrder = 0
- end
- object btnLoadRegistry: TButton
- Left = 407
- Top = 464
- Width = 145
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = 'Load From Registry'
- TabOrder = 1
- OnClick = btnLoadRegistryClick
- end
- object SaveRegistry: TButton
- Left = 558
- Top = 464
- Width = 154
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = 'Save To Registry'
- TabOrder = 2
- OnClick = SaveRegistryClick
- end
- end
|