ApplicationForm.dfm 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. object fAppMain: TfAppMain
  2. Left = 0
  3. Top = 0
  4. Caption = 'FastMM Sharing Test Application'
  5. ClientHeight = 208
  6. ClientWidth = 300
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'Tahoma'
  12. Font.Style = []
  13. OldCreateOrder = False
  14. Position = poScreenCenter
  15. PixelsPerInch = 96
  16. TextHeight = 13
  17. object Button1: TButton
  18. Left = 8
  19. Top = 172
  20. Width = 281
  21. Height = 25
  22. Caption = 'Load DLL and Display DLL Form'
  23. TabOrder = 0
  24. OnClick = Button1Click
  25. end
  26. object Memo1: TMemo
  27. Left = 8
  28. Top = 8
  29. Width = 281
  30. Height = 157
  31. Enabled = False
  32. Lines.Strings = (
  33. 'This application shows how to share FastMM between '
  34. 'an application and dynamically loaded DLL, without '
  35. 'using the borlndmm.dll library.'
  36. ''
  37. 'Click the button to load the test DLL and display its '
  38. 'form.'
  39. ''
  40. 'The relevant settings for this application:'
  41. '1) FastMM4.pas is the first unit in the uses clause '
  42. '2) The "ShareMM" option is enabled'
  43. '3) "Use Runtime Packages" is disabled'
  44. '')
  45. TabOrder = 1
  46. end
  47. end