14 lines
194 B
ObjectPascal
14 lines
194 B
ObjectPascal
program ChangeTest;
|
|
|
|
uses
|
|
Forms,
|
|
Change in 'Change.pas' {ChangeForm};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TChangeForm, ChangeForm);
|
|
Application.Run;
|
|
end.
|