How do you handle something like the security dialog. Right now I launch it in a separate window using loDialog.Show() because I have problems with scroll bars when I launch inside my MDI. (I just haven't had time to investigate why you can't scroll properly).
If I minimize the security dialog and then try to activate again through the menu system, I want to restore the existing instance to prevent multiple instances. How do I accomplish something like this.
Thanks
For Each loForm In MyMDI.MdiChildren If loForm.GetType() Is FormType llReturn = True If loForm.WindowState = FormWindowState.Minimized Then loForm.WindowState = FormWindowState.Normal End If End If Next
Return llReturnEnd Function
You would call it like this: