Advertisement
Guest User

ToolbarArtefact.dpr

a guest
Jul 19th, 2017
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.23 KB | None | 0 0
  1. program ToolbarArtefact;
  2.  
  3. uses
  4.   Vcl.Forms,
  5.   Unit2 in 'Unit2.pas' {Form2};
  6.  
  7. {$R *.res}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.MainFormOnTaskbar := True;
  12.   Application.CreateForm(TForm2, Form2);
  13.   Application.Run;
  14. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement