all groups > dotnet windows forms > july 2006 >
You're in the

dotnet windows forms

group:

How to show an auto hidden window


How to show an auto hidden window Ramesh
7/27/2006 6:59:02 AM
dotnet windows forms:
In my application, we have some windows that are auto hidden at start up. My
intention is to use a menu item to show them, just like that way Visual
Studio does with Toolbox, Solution Explorer etc. How can I programmatically
show an auto hidden window ?. Any help is highly appreciated.

Thanks,
RE: How to show an auto hidden window Mini-Tools Timm
7/27/2006 7:28:02 AM
[quoted text, click to view]

Perhaps I am misunderstanding your question, but to show a form that has
been hidden:

form.Visible = true;

--
Timm Martin
Mini-Tools
..NET Components and Windows Software
http://www.mini-tools.com
Re: How to show an auto hidden window Pritcham
7/28/2006 1:21:05 AM
Hi Ramesh

I would think that what you actually want to do is to not create the
forms until they are needed rather than create them but have them
hidden - otherwise you're using up resources needlessly (if the user
can't see them etc then what's the point of having them 'open'?). It
may be better to just create the forms when they're needed.

Cheers
Martin
[quoted text, click to view]
AddThis Social Bookmark Button