TB2DsgnConvertOptions.dfm 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. object TBConvertOptionsForm: TTBConvertOptionsForm
  2. Left = 225
  3. Top = 133
  4. BorderIcons = [biSystemMenu, biMinimize]
  5. BorderStyle = bsDialog
  6. Caption = 'Convert Menu'
  7. ClientHeight = 90
  8. ClientWidth = 249
  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 = False
  16. Position = poScreenCenter
  17. PixelsPerInch = 96
  18. TextHeight = 13
  19. object Label1: TLabel
  20. Left = 8
  21. Top = 8
  22. Width = 81
  23. Height = 13
  24. Caption = '&Menu to convert:'
  25. FocusControl = MenuCombo
  26. end
  27. object MenuCombo: TComboBox
  28. Left = 8
  29. Top = 24
  30. Width = 233
  31. Height = 21
  32. Style = csDropDownList
  33. ItemHeight = 13
  34. TabOrder = 0
  35. end
  36. object ConvertButton: TButton
  37. Left = 8
  38. Top = 57
  39. Width = 73
  40. Height = 23
  41. Caption = '&Convert'
  42. Default = True
  43. ModalResult = 1
  44. TabOrder = 1
  45. end
  46. object HelpButton: TButton
  47. Left = 168
  48. Top = 57
  49. Width = 73
  50. Height = 23
  51. Caption = '&Help'
  52. TabOrder = 2
  53. OnClick = HelpButtonClick
  54. end
  55. object Button1: TButton
  56. Left = 88
  57. Top = 57
  58. Width = 73
  59. Height = 23
  60. Cancel = True
  61. Caption = 'Cancel'
  62. ModalResult = 2
  63. TabOrder = 3
  64. end
  65. end