source: platform/trunk/LDPlatform.FormSource.pas

Last change on this file was 11, checked in by chronos, 10 years ago
  • Added: Some new concept forms and actions.
File size: 425 bytes
Line 
1unit LDPlatform.FormSource;
2
3interface
4
5uses
6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
7 Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
8
9type
10 TFormSource = class(TForm)
11 Memo1: TMemo;
12 private
13 { Private declarations }
14 public
15 { Public declarations }
16 end;
17
18var
19 FormSource: TFormSource;
20
21implementation
22
23{$R *.dfm}
24
25end.
Note: See TracBrowser for help on using the repository browser.