home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOKAN 17
/
DOKAN17.iso
/
Progs
/
Pjv03dde.zip
/
PJV03DDE
/
SRCCODE
/
SAMPLE3
/
JVIEW.DPR
< prev
next >
Wrap
Text File
|
1999-06-18
|
308b
|
17 lines
program jview;
uses
Forms,
jviewu in 'jviewu.pas' {Form1},
jviewu2 in 'jviewu2.pas' {Form2};
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'Pulsar jViewer';
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TForm2, Form2);
Application.Run;
end.