Files
lazarus-ccr/components/virtualtreeview-unstable/demos/vtbasic/vtbasic.lpr
blikblum ac1d2e0d17 Fixed header draw
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@83 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-02-25 01:24:00 +00:00

22 lines
429 B
ObjectPascal

program vtbasic;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, Main,vtlogger,ipcchannel;
begin
Logger.Channels.Add(TIPCChannel.Create);
Logger.Clear;
Logger.ActiveClasses:=[lcScroll,lcWarning];
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.