git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@31 05c56307-c608-d34a-929d-697000501d7a
14 lines
186 B
ObjectPascal
14 lines
186 B
ObjectPascal
program dbtredit;
|
|
|
|
uses
|
|
Forms,
|
|
main in 'main.pas' {FMain};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TFMain, FMain);
|
|
Application.Run;
|
|
end.
|