SaveSession.dfm 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. object SaveSessionDialog: TSaveSessionDialog
  2. Left = 403
  3. Top = 281
  4. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  5. BorderStyle = bsDialog
  6. Caption = 'Save session as'
  7. ClientHeight = 108
  8. ClientWidth = 326
  9. Color = clBtnFace
  10. ParentFont = True
  11. OldCreateOrder = True
  12. Position = poMainFormCenter
  13. OnCloseQuery = FormCloseQuery
  14. OnShow = FormShow
  15. DesignSize = (
  16. 326
  17. 108)
  18. PixelsPerInch = 96
  19. TextHeight = 13
  20. object InputLabel: TLabel
  21. Left = 8
  22. Top = 8
  23. Width = 80
  24. Height = 13
  25. Caption = '&Save session as:'
  26. FocusControl = InputCombo
  27. end
  28. object OKButton: TButton
  29. Left = 69
  30. Top = 76
  31. Width = 75
  32. Height = 25
  33. Anchors = [akRight, akBottom]
  34. Caption = 'OK'
  35. Default = True
  36. ModalResult = 1
  37. TabOrder = 2
  38. end
  39. object CancelButton: TButton
  40. Left = 157
  41. Top = 76
  42. Width = 75
  43. Height = 25
  44. Anchors = [akRight, akBottom]
  45. Cancel = True
  46. Caption = 'Cancel'
  47. ModalResult = 2
  48. TabOrder = 3
  49. end
  50. object InputCombo: TComboBox
  51. Left = 8
  52. Top = 24
  53. Width = 312
  54. Height = 21
  55. Anchors = [akLeft, akTop, akRight]
  56. ItemHeight = 13
  57. MaxLength = 255
  58. TabOrder = 0
  59. OnChange = InputComboChange
  60. end
  61. object HelpButton: TButton
  62. Left = 244
  63. Top = 76
  64. Width = 75
  65. Height = 25
  66. Anchors = [akRight, akBottom]
  67. Caption = '&Help'
  68. TabOrder = 4
  69. OnClick = HelpButtonClick
  70. end
  71. object SavePasswordCheck: TCheckBox
  72. Left = 14
  73. Top = 51
  74. Width = 299
  75. Height = 17
  76. Caption = 'Save &password (not recommended)'
  77. TabOrder = 1
  78. end
  79. end