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

Re: ShowWindow API by Dmitriy

Dmitriy
Wed Feb 25 04:35:57 CST 2004

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" <nilesh.rade@symphonysv.com> wrote in message
news:0919F62A-F2D3-4737-AD46-99A98B04F287@microsoft.com...
> 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


Re: ShowWindow API by Ed

Ed
Wed Feb 25 04:40:23 CST 2004

It is ShowWindow called with the SW_HIDE command:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/windowing/windows/windowreference/windowfunctions/showwindow.asp.

In the .NET Framework you can call the form's Hide().

"Nilesh" <nilesh.rade@symphonysv.com> wrote in message
news:0919F62A-F2D3-4737-AD46-99A98B04F287@microsoft.com...
> 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



Re: ShowWindow API by hirf-spam-me-here

hirf-spam-me-here
Wed Feb 25 06:39:10 CST 2004

* =?Utf-8?B?TmlsZXNo?= <nilesh.rade@symphonysv.com> scripsit:
> 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'.

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet/>

DropDown PopUp by nilesh

nilesh
Wed Feb 25 07:06:06 CST 2004

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