diff options
| author | Joshua Peek <josh@joshpeek.com> | 2012-07-23 15:52:49 -0500 |
|---|---|---|
| committer | Joshua Peek <josh@joshpeek.com> | 2012-07-23 15:52:49 -0500 |
| commit | 7b6caa0f6c7603aabb5e6ed657e24aaddbeafc78 (patch) | |
| tree | ec0522eae75bb04ae73d28ae3f599682a2bfdaeb /samples/Delphi | |
| parent | 314f0e485227915931db361be14d308a210bedea (diff) | |
Rename samples subdirectories
Diffstat (limited to 'samples/Delphi')
| -rw-r--r-- | samples/Delphi/program.dpr | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/samples/Delphi/program.dpr b/samples/Delphi/program.dpr new file mode 100644 index 0000000..d2d71f1 --- /dev/null +++ b/samples/Delphi/program.dpr @@ -0,0 +1,14 @@ +program gmail; + +uses + Forms, + Unit2 in 'Unit2.pas' {Form2}; + +{$R *.res} + +begin + Application.Initialize; + Application.MainFormOnTaskbar := True; + Application.CreateForm(TForm2, Form2); + Application.Run; +end. |
