Atozed Forums

Full Version: Activate a form from the stack
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

In a stack of created formsĀ  (7 of them).
How do I make nr 3 the active form?
Calling method Show() of any IWForm makes it the active one.

You can use one of many IWApplication methods do obtain a reference to that existing form. For instance:

FindFormByName(const AFormName: string), like:

var
myForm: TIWForm;
begin
myForm := WebApplication.FindFormByName('MyForm') as TIWForm;
if Assigned(myForm) then
myForm.Show();
end;

You can also use the ActiveForms[index] property directly if you know the position of the form that you need.