ShowWindow API

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
Is there any API using which I can do exactly the reverse thing that an ShowWindow method os User32.dll does
I want to make a window disappear.....
Any 1 can help
 
Hi,

You can use the Hide() method of the form or of the control.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://www.x-unity.net/teststudio.aspx
Bring the power of unit testing to VS .NET IDE

Nilesh said:
Hi
Is there any API using which I can do exactly the reverse thing that an
ShowWindow method os User32.dll does?
 
* =?Utf-8?B?TmlsZXNo?= said:
Is there any API using which I can do exactly the reverse thing that an ShowWindow method os User32.dll does?
I want to make a window disappear......

Use 'ShowWindow' + 'Const SW_HIDE As Int32 = 0'.
 
Actually I am developing a custom cobobox. I want to create a DropDown for it
Can any 1 suggest how can i go about developing it. Offcourse I will be using my won listBox Control to DropDown.
But i am not getting the approach as to How can i develop and attach athe dropdown to the combo.
Please help
 
Back
Top