12345678910111213141516171819202122232425262728293031323334 |
- object Form2: TForm2
- Left = 0
- Top = 0
- Caption = 'Form2'
- ClientHeight = 231
- ClientWidth = 505
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Tahoma'
- Font.Style = []
- OldCreateOrder = False
- PixelsPerInch = 96
- TextHeight = 13
- object Button1: TButton
- Left = 16
- Top = 56
- Width = 75
- Height = 25
- Caption = 'Start server'
- TabOrder = 0
- OnClick = Button1Click
- end
- object CheckBox1: TCheckBox
- Left = 16
- Top = 24
- Width = 97
- Height = 17
- Caption = 'Enable SSL mode'
- TabOrder = 1
- OnClick = CheckBox1Click
- end
- end
|