You will need:
VB 2008/2010 (I'm using 2008)
8 Textboxes
8 Labels
What to edit:
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.Inf
SFullName ' This tells you your operation system's full name.
TextBox3.Text = My.Computer.Inf
SPlatform ' This tells you your operation system's platform
TextBox4.Text = My.Computer.Inf
SVersion ' 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!