sysinfo control

  • Thread starter Thread starter ryan
  • Start date Start date
Hi Ryan,

I dont know if you mean something like this

I hope this helps a little bit?

Cor

\\\
Dim environmentVariables As IDictionary =
Environment.GetEnvironmentVariables()
Dim de As DictionaryEntry
Me.textbox1.Multiline = True
Me.textbox1.ScrollBars = ScrollBars.Vertical
For Each de In environmentVariables
Me.textbox1.Text = Me.textbox1.Text & de.Key.ToString & "=" &
de.Value.ToString & vbCrLf
Next de
///

"> is there a sysinfo control in VB.NET? If yes where can I
 
Hi,

No there is not. Most of the information is in the environment and
systeminformation classes.

Ken
 
Hi Cor,

Thank you very much for that great info.
I still have other question if you know this, in the Desktop Display
properties click advanced... button, then goto general tab there is a
font size dropdown if I changed it to Large font is there any way that I
could retrieve that data in VB.NET? Thanks again in advanced.

Ryan
 
Hi Ryan,

I never went that deep in the sysinfo, but you can have a look for

SystemInformation class I saw there is a simple example for that on/in msdn

Cor
 
Back
Top