Advertisement
appo

Making the invisible form (Option 1)

Dec 27th, 2013
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.23 KB | None | 0 0
  1. program Project1;
  2.  
  3. uses
  4. Forms,
  5. Unit1 in 'Unit1.pas' {Form1};
  6.  
  7. {$R *.res}
  8.  
  9. begin
  10. Application.Initialize;
  11. Application.CreateForm(TForm1, Form1);
  12. application.ShowMainForm:=false;
  13. Application.Run;
  14. end.
  15.  
  16. // Coded by Appo //
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement