ComboInput.dfm 1.4 KB

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