Created
December 3, 2012 09:11
-
-
Save ritalin/4193781 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program Project1; | |
uses | |
Forms, | |
Unit1 in 'Unit1.pas' {Form1}, | |
Unit2 in 'Unit2.pas' {DataModule2: TDataModule}; | |
{$R *.res} | |
begin | |
Application.Initialize; | |
Application.CreateForm(TForm1, Form1); | |
Application.CreateForm(TDataModule2, DataModule2); | |
Application.Run; | |
end. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment