Jump to content

General uniGUI questions


Bennie Coetzer

Recommended Posts

What is the difference between a free form and an application form?

It appears that a form's create is called when it is requested to be shown.  Can the create be executed without it being shown?

It seems there is a new version of uniGUI.  Will it run on XE3?  Is it necessary to upgrade?

Is there some documentation regarding the actual operation of uniGUI.  I struggle to make sense of the logic and would rather not delve into the source code.

 

Link to comment
Share on other sites

  • Administrators

 

What is the difference between a free form and an application form?

 

 

 

Free form should be created in code manually. It is not managed by framework.

MyForm := TUniForm5.Create(UniApplication)
MyForm. ShowModal;

It appears that a form's create is called when it is requested to be shown.  Can the create be executed without it being shown?

 

 

A form must be shown in same event which creates it. It can not be created in one event and shown in another.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...