Custom.dfm 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 = 41
  8. ClientWidth = 326
  9. Color = clBtnFace
  10. ParentFont = True
  11. OldCreateOrder = True
  12. Position = poOwnerFormCenter
  13. DesignSize = (
  14. 326
  15. 41)
  16. PixelsPerInch = 96
  17. TextHeight = 13
  18. object OKButton: TButton
  19. Left = 68
  20. Top = 9
  21. Width = 75
  22. Height = 25
  23. Anchors = [akRight, akBottom]
  24. Caption = 'OK'
  25. Default = True
  26. ModalResult = 1
  27. TabOrder = 2
  28. end
  29. object CancelButton: TButton
  30. Left = 156
  31. Top = 9
  32. Width = 75
  33. Height = 25
  34. Anchors = [akRight, akBottom]
  35. Cancel = True
  36. Caption = 'Cancel'
  37. ModalResult = 2
  38. TabOrder = 0
  39. end
  40. object HelpButton: TButton
  41. Left = 243
  42. Top = 9
  43. Width = 75
  44. Height = 25
  45. Anchors = [akRight, akBottom]
  46. Caption = '&Help'
  47. TabOrder = 1
  48. OnClick = HelpButtonClick
  49. end
  50. end