home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / leadtools / ocx32.lt / TWAIN.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-05-15  |  644 b   |  39 lines

  1. unit Twain;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls;
  7.  
  8. type
  9.   TTwainDlg = class(TForm)
  10.     OKBtn: TBitBtn;
  11.     CancelBtn: TBitBtn;
  12.     PixelType: TRadioGroup;
  13.     Bits: TRadioGroup;
  14.     GroupBox1: TGroupBox;
  15.     SXPos: TEdit;
  16.     SYPos: TEdit;
  17.     SWidth: TEdit;
  18.     SHeight: TEdit;
  19.     Label1: TLabel;
  20.     Label2: TLabel;
  21.     Label3: TLabel;
  22.     Label4: TLabel;
  23.     Label5: TLabel;
  24.     DPI: TEdit;
  25.   private
  26.     { Private declarations }
  27.   public
  28.     { Public declarations }
  29.   end;
  30.  
  31. var
  32.   TwainDlg: TTwainDlg;
  33.  
  34. implementation
  35.  
  36. {$R *.DFM}
  37.  
  38. end.
  39.