mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-13 18:47:22 +02:00
19 lines
277 B
ObjectPascal
19 lines
277 B
ObjectPascal
program extgrid;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$ifdef unix}cwstring,xmliconv,{$endif}
|
|
fpCGI, wmusers;
|
|
|
|
{$IFDEF WINDOWS}{$R extgrid.rc}{$ENDIF}
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Title:='SQLDBWebDataProvider demo using ExtJS';
|
|
Application.Initialize;
|
|
Application.Run;
|
|
end.
|
|
|