How to Restore minimized form instance

T

ThomasAJ

I have a form that is instanced several times.

How can I RESTORE an instance.

I am at this stage in my code:
Set frm = colForms(Handle & "")
(frm definitely refers to the correct instance as frm.SetFocus works)

I have tried:
frm.WindowState = vbNormal

but I get error:
2465 Application-defined or object-defined error
 
Top