Ignore:
Timestamp:
May 9, 2013, 9:21:23 PM (11 years ago)
Author:
chronos
Message:
  • Added: Demo IDE placed in subfolder Demo.
  • Added: Base TDataModule as container for non visual components. It's part of TLDPlatform component.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • platform/trunk/ULDPlatform.pas

    r9 r10  
    44
    55uses
    6   System.SysUtils, System.Classes, UFormMain, Vcl.Forms;
     6  System.SysUtils, System.Classes, Vcl.Forms, LDPlatform.Core;
    77
    88type
     
    1313    { Protected declarations }
    1414  public
    15     procedure Init;
     15    Core: TCore;
     16    procedure Show;
    1617  published
    17     { Published declarations }
    1818  end;
    1919
     
    2929{ TLDPlatform }
    3030
    31 procedure TLDPlatform.Init;
     31procedure TLDPlatform.Show;
    3232begin
    33   Application.CreateForm(TFormMain, FormMain);
    34   FormMain.Show;
     33  Core := TCore.Create(Self);
    3534end;
    3635
Note: See TracChangeset for help on using the changeset viewer.