home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / chap17 / appmem / main.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-03-21  |  500 b   |  37 lines

  1. unit Main;
  2.  
  3. { Program copyright (c) 1995 by Charles Calvert }
  4. { Project Name: APPMEM }
  5.  
  6. interface
  7.  
  8. uses
  9.   WinTypes, WinProcs,
  10.   Classes, Graphics,
  11.   Forms, Controls,
  12.   StdCtrls;
  13.  
  14. type
  15.   TForm1 = class(TForm)
  16.     ListBox1: TListBox;
  17.     Button1: TButton;
  18.     procedure Button1Click(Sender: TObject);
  19.   end;
  20.  
  21. var
  22.   Form1: TForm1;
  23.  
  24. implementation
  25.  
  26. uses
  27.   GetGDTW;
  28.   
  29. {$R *.DFM}
  30.  
  31. procedure TForm1.Button1Click(Sender: TObject);
  32. begin
  33.   FillList1(ListBox1);
  34. end;
  35.  
  36. end.
  37.