ProjectSource: Difference between revisions

From VistApedia
Jump to navigationJump to search
No edit summary
 
NeilArmstrong (talk | contribs)
m Added glossary link to Application~
 
Line 13: Line 13:
  begin  
  begin  
   
   
   Application.Initialize;
   [[Application~|Application]].Initialize;
   Application.CreateForm?(TImagerForm, ImagerForm);
   [[Application~|Application]].CreateForm?(TImagerForm, ImagerForm);
   Application.Run;
   [[Application~|Application]].Run;
  end.  
  end.  
   
   

Latest revision as of 12:23, 22 February 2012

ProjectSource

program CPRSImager; 

uses 

 Forms,
 ImagerUnit in 'ImagerUnit.pas' {ImagerForm};

{$R *.res} 

begin 

 Application.Initialize;
 Application.CreateForm?(TImagerForm, ImagerForm);
 Application.Run;
end. 


Edit Page - Page History - Printable View - Recent Changes - WikiHelp - SearchWiki Page last modified on June 11, 2004, at 04:37 PM