CompInputQueryCombo.dfm 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. object InputQueryCombo: TInputQueryCombo
  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. OldCreateOrder = True
  16. Position = poScreenCenter
  17. OnCreate = FormCreate
  18. DesignSize = (
  19. 582
  20. 73)
  21. PixelsPerInch = 96
  22. TextHeight = 13
  23. object PromptLabel: TLabel
  24. Left = 8
  25. Top = 11
  26. Width = 265
  27. Height = 13
  28. AutoSize = False
  29. Caption = '...'
  30. FocusControl = ValueComboBox
  31. end
  32. object OKButton: TButton
  33. Left = 421
  34. Top = 43
  35. Width = 73
  36. Height = 23
  37. Anchors = [akRight, akBottom]
  38. Caption = 'OK'
  39. Default = True
  40. ModalResult = 1
  41. TabOrder = 0
  42. end
  43. object CancelButton: TButton
  44. Left = 501
  45. Top = 43
  46. Width = 73
  47. Height = 23
  48. Anchors = [akRight, akBottom]
  49. Cancel = True
  50. Caption = 'Cancel'
  51. ModalResult = 2
  52. TabOrder = 1
  53. end
  54. object ValueComboBox: TComboBox
  55. Left = 279
  56. Top = 8
  57. Width = 295
  58. Height = 21
  59. Anchors = [akLeft, akTop, akRight]
  60. TabOrder = 2
  61. end
  62. end