Main.dfm 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. OnClose = FormClose
  15. OnCreate = FormCreate
  16. PixelsPerInch = 96
  17. DesignSize = (
  18. 720
  19. 493)
  20. TextHeight = 13
  21. object meInfo: TMemo
  22. Left = 8
  23. Top = 8
  24. Width = 704
  25. Height = 441
  26. Anchors = [akLeft, akTop, akRight, akBottom]
  27. ReadOnly = True
  28. ScrollBars = ssBoth
  29. TabOrder = 0
  30. end
  31. object btnLoadFile: TButton
  32. Left = 407
  33. Top = 464
  34. Width = 145
  35. Height = 25
  36. Anchors = [akRight, akBottom]
  37. Caption = 'Load From File'
  38. TabOrder = 1
  39. OnClick = btnLoadFileClick
  40. end
  41. object btnSaveFile: TButton
  42. Left = 558
  43. Top = 464
  44. Width = 154
  45. Height = 25
  46. Anchors = [akRight, akBottom]
  47. Caption = 'Save To File'
  48. TabOrder = 2
  49. OnClick = btnSaveFileClick
  50. end
  51. end