home *** CD-ROM | disk | FTP | other *** search
- unit Twain;
-
- interface
-
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
- StdCtrls, ExtCtrls;
-
- type
- TTwainDlg = class(TForm)
- OKBtn: TBitBtn;
- CancelBtn: TBitBtn;
- PixelType: TRadioGroup;
- Bits: TRadioGroup;
- GroupBox1: TGroupBox;
- SXPos: TEdit;
- SYPos: TEdit;
- SWidth: TEdit;
- SHeight: TEdit;
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- Label4: TLabel;
- Label5: TLabel;
- DPI: TEdit;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- TwainDlg: TTwainDlg;
-
- implementation
-
- {$R *.DFM}
-
- end.
-