FastReport_FMX_2.8.12/LibD28x64/FmxLinuxFrxDBX.dpr

20 lines
288 B
ObjectPascal
Raw Permalink Normal View History

2024-01-10 21:50:38 +01:00
program FmxLinuxFrxDBX;
{$APPTYPE CONSOLE}
uses
System.SysUtils,
FMX.frxDBXComponents,
FMX.frxDBXEditor,
FMX.frxDBXRTTI;
begin
try
{ TODO -oUser -cConsole Main : Insert code here }
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
end.