Bennie Coetzer Posted May 4, 2014 Posted May 4, 2014 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. Quote
Administrators Farshad Mohajeri Posted May 4, 2014 Administrators Posted May 4, 2014 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. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.