Custom.dfm 1001 B

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