MoleDirect
Technical User
I am working with the registry and i was looking for a way to read a registry entry, and show the result on the program...
At the moment, the .vbs method working for me is this...
Which simply lets you know if your system beebs are on or off..
I wantet to make somthing in Visual Basic 2008 (beta) that does the same, but the coding was way over my head.. So what I am planning is including .vbs files that do the dirty work in the back ground, and read / write registry entries, and feed the results to the project file, so I can let the user know if system beeps are on or off.
If there is a simpler way to do this, i am wide open...
Thanks!!!
At the moment, the .vbs method working for me is this...
Code:
Set WshShell = WScript.CreateObject("WScript.Shell")
WScript.Echo WshShell.RegRead("HKCU\Control Panel\Sound\Beep")
Which simply lets you know if your system beebs are on or off..
I wantet to make somthing in Visual Basic 2008 (beta) that does the same, but the coding was way over my head.. So what I am planning is including .vbs files that do the dirty work in the back ground, and read / write registry entries, and feed the results to the project file, so I can let the user know if system beeps are on or off.
If there is a simpler way to do this, i am wide open...
Thanks!!!