Difference between revisions of "Hiding and Showing Forms in Visual Basic"

From Techotopia
Jump to: navigation, search
(New page: When developing a Windows application using Visual Basic it is highly likely that the application will consist of multiple forms (otherwise known as windows). It is unlikely, however, that...)
 
Line 2: Line 2:
  
 
In this chapter we will cover the topic of hiding and showing forms when developing applications in Visual Basic.
 
In this chapter we will cover the topic of hiding and showing forms when developing applications in Visual Basic.
 +
 +
== Creating an Application with Multiple Forms ==

Revision as of 20:32, 18 July 2007

When developing a Windows application using Visual Basic it is highly likely that the application will consist of multiple forms (otherwise known as windows). It is unlikely, however, that all of those forms will need to be displayed as soon as the application starts up. In fact, it is likely that most of the forms will remain hidden until the user performs some action that requires a form to be displayed.

In this chapter we will cover the topic of hiding and showing forms when developing applications in Visual Basic.

Creating an Application with Multiple Forms