I've been using:
code:
Interop.Call("user32.dll","SetWindowPos",PlusWnd.GetControlHandle("blah"),0,0,0,0,0,80);
to hide a specific control on a PlusWnd. The problem is however, that when I want to show it again,
code:
Interop.Call("user32.dll","SetWindowPos",PlusWnd.GetControlHandle("blah"),0,0,0,0,0,40);
returns 1 meaning it worked, but I still cannot see the control... Any ideas?