[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
VB_Create_Form
Most Visual Basic applications are based on a form. The form is a canvas on which you paint your application. In many cases, there will be more than one form, and visual basic allows you to display or hide forms while the application is running. Closing the main from quits the application.
A form is a window - they have Minimise, Maximise, and Close buttons.
Creating a simple form
This example creates a simple form. This is one of the basic things you do when you begin developing applications in visual basic. Follow these steps:
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
VB_Create_Form
Creating a form in Visual Basic
What is a form?Most Visual Basic applications are based on a form. The form is a canvas on which you paint your application. In many cases, there will be more than one form, and visual basic allows you to display or hide forms while the application is running. Closing the main from quits the application.
A form is a window - they have Minimise, Maximise, and Close buttons.
Creating a simple form
This example creates a simple form. This is one of the basic things you do when you begin developing applications in visual basic. Follow these steps:
- Start Visual Basic and make sure that "Standard EXE" is selected in the New Project Dialog box.
- Look for a small window called Properties. You'll find an entry called Caption in the table grid. Click on the cell next to it and type "My Form"
- Click Start from the Run menu or press F5 to run the program.
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
