Custom.dfm 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. object CustomDialog: TCustomDialog
  2. Left = 401
  3. Top = 228
  4. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  5. BorderStyle = bsDialog
  6. Caption = 'Save session as siteX'
  7. ClientHeight = 42
  8. ClientWidth = 362
  9. Color = clBtnFace
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -12
  13. Font.Name = 'Segoe UI'
  14. Font.Style = []
  15. Position = poOwnerFormCenter
  16. DesignSize = (
  17. 362
  18. 42)
  19. TextHeight = 15
  20. object OKButton: TButton
  21. Left = 102
  22. Top = 9
  23. Width = 80
  24. Height = 25
  25. Anchors = [akRight, akBottom]
  26. Caption = 'OK'
  27. Default = True
  28. ModalResult = 1
  29. TabOrder = 2
  30. end
  31. object CancelButton: TButton
  32. Left = 188
  33. Top = 9
  34. Width = 80
  35. Height = 25
  36. Anchors = [akRight, akBottom]
  37. Cancel = True
  38. Caption = 'Cancel'
  39. ModalResult = 2
  40. TabOrder = 0
  41. end
  42. object HelpButton: TButton
  43. Left = 274
  44. Top = 9
  45. Width = 80
  46. Height = 25
  47. Anchors = [akRight, akBottom]
  48. Caption = '&Help'
  49. TabOrder = 1
  50. OnClick = HelpButtonClick
  51. end
  52. end