home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
delphi
/
imagelib
/
udbsimp.pa_
/
udbsimp.pa
Wrap
Text File
|
1995-10-01
|
1KB
|
52 lines
{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}
unit Udbsimp;
interface
uses
SysUtils, WinTypes, WinProcs, 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.