Tutorial by Examples

To show a message box when the form has been shown: Public Class Form1 Private Sub Form1_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown MessageBox.Show("Hello, World!") End Sub End Class To show a message box before the form has been shown: Public Cla...
Some things all beginners should know / do that will help them have a good start with VB .Net: Set the following Options: 'can be permanently set ' Tools / Options / Projects and Soluntions / VB Defaults Option Strict On Option Explicit On Option Infer Off Public Class Form1 End Class ...
The Windows.Forms.Timer component can be used to provide the user information that is not time critical. Create a form with one button, one label, and a Timer component. For example it could be used to show the user the time of day periodically. 'can be permanently set ' Tools / Options / Projec...

Page 1 of 1