mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-09 11:56:13 +02:00
17 lines
257 B
ObjectPascal
17 lines
257 B
ObjectPascal
program extgrid;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$ifdef unix}cwstring,xmliconv,{$endif}
|
|
fpCGI, wmusers;
|
|
|
|
{$IFDEF WINDOWS}{$R extgrid.rc}{$ENDIF}
|
|
|
|
begin
|
|
Application.Title:='ExtJS Grid demo for fpwebdata';
|
|
Application.Initialize;
|
|
Application.Run;
|
|
end.
|
|
|