home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Professionell 2003 July
/
PCpro_2003_07.ISO
/
vollvers
/
edhtml
/
EdHTMLv5.0.exe
/
Main
/
formularz.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2003-05-14
|
382 b
|
27 lines
{ ..::EdHTML::.. }
{ System Plug-In v1.0 }
{ Autor: RaLib Group }
//Przyklad: Tworzenie nowego formularza
unit SampleForm;
interface
uses Windows, Messages, Forms;
implementation
uses fModalForm;
function main: string;
var
Form: TForm;
begin
Form := TMyModalForm.Create(nil);
Form.ShowModal;
Form.Free;
end;
end.