2
0

Main.dfm 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. object MainForm: TMainForm
  2. AlignWithMargins = True
  3. Left = 0
  4. Top = 0
  5. Caption = 'Quick Config Demo'
  6. ClientHeight = 493
  7. ClientWidth = 720
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'Tahoma'
  13. Font.Style = []
  14. OldCreateOrder = False
  15. OnClose = FormClose
  16. OnCreate = FormCreate
  17. DesignSize = (
  18. 720
  19. 493)
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object meInfo: TMemo
  23. Left = 8
  24. Top = 8
  25. Width = 704
  26. Height = 441
  27. Anchors = [akLeft, akTop, akRight, akBottom]
  28. ReadOnly = True
  29. ScrollBars = ssBoth
  30. TabOrder = 0
  31. end
  32. object btnLoadFile: TButton
  33. Left = 407
  34. Top = 464
  35. Width = 145
  36. Height = 25
  37. Anchors = [akRight, akBottom]
  38. Caption = 'Load From File'
  39. TabOrder = 1
  40. OnClick = btnLoadFileClick
  41. end
  42. object btnSaveFile: TButton
  43. Left = 558
  44. Top = 464
  45. Width = 154
  46. Height = 25
  47. Anchors = [akRight, akBottom]
  48. Caption = 'Save To File'
  49. TabOrder = 2
  50. OnClick = btnSaveFileClick
  51. end
  52. end