home *** CD-ROM | disk | FTP | other *** search
- {Part of Imagelib VCL/DLL Library.
- Written by Jan Dekkers and Kevin Adams (c) 1995. If you are a non
- registered client, you may use or alter this demo only for evaluation
- purposes.
-
- Uses ImageLib 3.0
-
- Changed callback in version 2.21 to a function with cdecl.
- using the C calling convention.
-
- scrolling text images
- Cut, Copy and Paste to/from the clipboard
- Printing bitmaps}
- {
- Written by Jan Dekkers and Kevin Adams (c) 1995, 1996. If you are a non
- registered client, you may use or alter this demo only for evaluation
- purposes.
-
- Copyright by SkyLine Tools. All rights reserved.
-
- Part of Imagelib VCL/DLL Library.
- }
-
- unit Udbsimp;
-
- {Includes settings to compile in either 16 or 32 bit}
- {$I DEFILIB.INC}
-
- interface
-
- uses
- {$IFDEF DEL32}
- Windows,
- {$ELSE}
- WinTypes,
- WinProcs,
- {$ENDIF}
- DLL95V1, {ImageLib Dll interface and misc. functions}
- SysUtils,
- Messages,
- Classes,
- Graphics,
- Controls,
- Forms,
- Dialogs,
- ExtCtrls,
- DBCtrls,
- DB,
- DBTables,
- StdCtrls,
- Tdmultip;
-
-
- type
- TSimpleForm = class(TForm)
- Table1: TTable;
- DataSource1: TDataSource;
- DBNavigator1: TDBNavigator;
- Label1: TLabel;
- DBMultiImage1: TPDBMultiImage;
- procedure FormCreate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- SimpleForm: TSimpleForm;
-
- implementation
-
- {$R *.DFM}
-
- procedure TSimpleForm.FormCreate(Sender: TObject);
- begin
- Table1.DatabaseName:=ExtractFilepath(Application.ExeName);
- Table1.Active:=True;
- end;
-
- end.
-