Componentes.Terceros.SDAC/internal/4.10.0.10/1/Demos/Win32/Miscellaneous/Midas/Client.dpr
2007-10-05 14:48:18 +00:00

14 lines
205 B
ObjectPascal

program Client;
uses
Forms,
ClientForm in 'ClientForm.pas' {fmClient};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TfmClient, fmClient);
Application.Run;
end.