| [Overview][Resource strings][Types][Classes][Procedures and functions][Variables][Index] | 
Create a component
Source position: daemonapp.pp line 376
| public procedure TCustomDaemonApplication.CreateForm( | 
| InstanceClass: TComponentClass; | 
| var Reference | 
| ); virtual; | 
| InstanceClass | 
 | Class pointer of component instance to create | 
| Reference | 
 | Variable to store the instance pointer in. | 
CreateForm creates an instance of InstanceClass and fills Reference with the class instance pointer. It's main purpose is to give an IDE a means of assuring that forms or datamodules are created on application startup: the IDE will generate calls for all modules that are auto-created.
An exception may arise if the instance wants to stream itself from resources, but no resources are found.
| 
 | Create daemon instance |