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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...