Re: Visible status of form
You can not do this to your main form as discussed here
http://msdn.microsoft.com/en-us/libr...(v=vs.71).aspx
Re: Visible status of form
That page KI linked to is very old and a bit outdated. I would suggest:
1. Set the form's WindowState to Minimized, either in the designer or in code after creating the instance.
2. Set the form's ShowInTaskbar to False, either in the designer or in code after creating the instance.
3. Handle the Shown event of the form, which is raised after the form is displayed for the first time.
4. In the event handler, set the form's Visible to False and then change the other properties if desired.
Re: Visible status of form
Why this information has changed inside vb.net that comes from VB1. it is old but does not allow to treat with this way