program OverbyteIcsWebAppServer; uses Forms, OverbyteIcsWebAppServerMain in 'OverbyteIcsWebAppServerMain.pas' {WebAppSrvForm}, OverbyteIcsWebAppServerPages in 'OverbyteIcsWebAppServerPages.pas'; {$R *.res} begin Application.Initialize; Application.CreateForm(TWebAppSrvForm, WebAppSrvForm); Application.Run; end.