svrMain.pas
上传用户:juxian
上传日期:2013-04-01
资源大小:38k
文件大小:0k
源码类别:

驱动编程

开发平台:

Delphi

  1. unit svrMain;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   ScrSpy, StdCtrls;
  6. type
  7.   TForm1 = class(TForm)
  8.     ScreenEncoder1: TScreenEncoder;
  9.     Label1: TLabel;
  10.     Label2: TLabel;
  11.   private
  12.     { Private declarations }
  13.   public
  14.     { Public declarations }
  15.   end;
  16. var
  17.   Form1: TForm1;
  18. implementation
  19. {$R *.DFM}
  20. end.