mirror of
https://github.com/SistemaRayoXP/Virtual-Mac.git
synced 2024-12-04 07:52:10 +00:00
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
|