\\\
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
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.
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
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.