VB.NET - Define form.

Define form in VB.NET.

Forms are the primary unit of the user interface. Design of the form should be consistent, complete, and attractive visual interface. You can add forms to your application at design time or at run time.
Forms have properties that control their appearance.

These properties include

- BackColor
- ForeColor
- Text
- Font
- Cursor
- BackGroundImage
- Opacity

Form provides several intrinsic methods to control their lifetime

- Form.Show
- Form.ShowDialog
- Form.Activate
- Form.Hide
- Form.Close

These methods causes change in the visual interface and raises various events

- Load
- Activated/Deactivate
- VisibleChanged
- Closing
- Closed
VB.NET - Define Context menu in VB.NET
Context menu - It is useful for enabling access to commands in a variety of contextual situations.......
VB.NET - Validation
Validation - Field-level validation means validating each field as it receives focus. Form-level validation is the process.......
VB.NET - TextBox control properties
TextBox control properties - Textbox control has several properties that restrict the values users can enter.......
Post your comment