mirror of
https://github.com/SistemaRayoXP/Virtual-Mac.git
synced 2024-12-03 16:49:21 +00:00
bff2e655c3
NET Code!
22 lines
467 B
VB.net
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 |