Virtual-Mac/frmAbout.vb

22 lines
467 B
VB.net

Option Strict Off
Option Explicit On
Friend Class frmAbout
Inherits System.Windows.Forms.Form
Private Sub frmAbout_Load(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles MyBase.Load
SystemInformation()
End Sub
Public Sub SystemInformation()
'Declarations
'Here you obtain the system info
'Naming the Windows OS by its version
'Assigning the info to the labels
End Sub
End Class