IDE.InputQueryComboForm.dfm 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. object InputQueryComboForm: TInputQueryComboForm
  2. Left = 330
  3. Top = 188
  4. BorderIcons = [biSystemMenu]
  5. BorderStyle = bsDialog
  6. Caption = '...'
  7. ClientHeight = 73
  8. ClientWidth = 582
  9. Color = clBtnFace
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -11
  13. Font.Name = 'MS Sans Serif'
  14. Font.Style = []
  15. Position = poScreenCenter
  16. OnCreate = FormCreate
  17. DesignSize = (
  18. 582
  19. 73)
  20. TextHeight = 13
  21. object PromptLabel: TLabel
  22. Left = 8
  23. Top = 11
  24. Width = 9
  25. Height = 13
  26. Caption = '...'
  27. FocusControl = ValueControl
  28. end
  29. object OKButton: TButton
  30. Left = 421
  31. Top = 43
  32. Width = 73
  33. Height = 23
  34. Anchors = [akRight, akBottom]
  35. Caption = 'OK'
  36. Default = True
  37. ModalResult = 1
  38. TabOrder = 1
  39. end
  40. object CancelButton: TButton
  41. Left = 501
  42. Top = 43
  43. Width = 73
  44. Height = 23
  45. Anchors = [akRight, akBottom]
  46. Cancel = True
  47. Caption = 'Cancel'
  48. ModalResult = 2
  49. TabOrder = 2
  50. end
  51. object ValueControl: TComboBox
  52. Left = 279
  53. Top = 8
  54. Width = 295
  55. Height = 21
  56. Anchors = [akLeft, akTop, akRight]
  57. TabOrder = 0
  58. end
  59. end