What Is My Computer Info?

Blessing

User is banned.
Reputation
0
You will need:

VB 2008/2010 (I'm using 2008)
8 Textboxes
8 Labels

What to edit:
untitled.png


It's too much to explain so make it look like that.
All textboxes are "ReadOnly"

Codes:

In Form_1:
[vb]TextBox1.Text = System.Environment.MachineName ' This tells you your machine name.
TextBox2.Text = My.Computer.Info_OSFullName ' This tells you your operation system's full name.
TextBox3.Text = My.Computer.Info_OSPlatform ' This tells you your operation system's platform
TextBox4.Text = My.Computer.Info_OSVersion ' This tells you your operation system's platform
TextBox5.Text = My.Computer.Info.AvailablePhysicalMemory ' This tells you your available physical memory.
TextBox6.Text = My.Computer.Info.AvailableVirtualMemory ' This tells you your available virtual memory.
TextBox7.Text = My.Computer.Info.TotalPhysicalMemory ' This tells you your total physical memory.
TextBox8.Text = My.Computer.Info.TotalVirtualMemory ' This tells you your total virtual memory.[/vb]

Now your done! It's all self explanatory!
When you now open your program, it tells you your computer info automatically!
 
Nice tutorial, easy to build now i'm gonna study codes :p
 
The code given isnt complete and needs to be put into a button sub, or form load sub.
 
Back
Top