| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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
- ParentFont = True
- 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
|