12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- object CustomDialog: TCustomDialog
- Left = 401
- Top = 228
- BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
- BorderStyle = bsDialog
- Caption = 'Save session as siteX'
- ClientHeight = 42
- ClientWidth = 362
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -12
- Font.Name = 'Segoe UI'
- Font.Style = []
- Position = poOwnerFormCenter
- DesignSize = (
- 362
- 42)
- TextHeight = 15
- object OKButton: TButton
- Left = 102
- Top = 9
- Width = 80
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = 'OK'
- Default = True
- ModalResult = 1
- TabOrder = 2
- end
- object CancelButton: TButton
- Left = 188
- Top = 9
- Width = 80
- Height = 25
- Anchors = [akRight, akBottom]
- Cancel = True
- Caption = 'Cancel'
- ModalResult = 2
- TabOrder = 0
- end
- object HelpButton: TButton
- Left = 274
- Top = 9
- Width = 80
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = '&Help'
- TabOrder = 1
- OnClick = HelpButtonClick
- end
- end
|