home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / delphi / tenpack.lzh / KEYDEMO.PAS < prev    next >
Pascal/Delphi Source File  |  1995-05-30  |  623b  |  36 lines

  1. unit keydemo;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, Buttons, psstate;
  8.  
  9. type
  10.   TDemoKeystate = class(TForm)
  11.     KeyState1: TKeyState;
  12.     KeyState2: TKeyState;
  13.     KeyState3: TKeyState;
  14.     Label1: TLabel;
  15.     Label2: TLabel;
  16.     procedure KeyState1Click(Sender: TObject);
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22.  
  23. var
  24.   DemoKeystate: TDemoKeystate;
  25.  
  26. implementation
  27.  
  28. {$R *.DFM}
  29.  
  30. procedure TDemoKeystate.KeyState1Click(Sender: TObject);
  31. begin
  32.     {for debug}
  33. end;
  34.  
  35. end.
  36.