git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.SDAC@3 6f543ec7-021b-7e4c-98c9-62eafc7fb9a8
16 lines
304 B
ObjectPascal
16 lines
304 B
ObjectPascal
program MSSQLCompact_VclNet;
|
|
|
|
{%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\system.drawing.dll'}
|
|
|
|
uses
|
|
Forms,
|
|
Main in 'Main.pas' {fmMain};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TfmMain, fmMain);
|
|
Application.Run;
|
|
end.
|