Page 1 of 1
Wifi Sistr - Wireless Signal Strength Monitor
Posted: June 9th, 2006, 2:45 pm
by Rafael
I am trying to get wireless information from this progie:
http://www.dnsoft.be/
It used to show the Wi-Fi Signal Strength.
It?s a great program...
My question is: Is there a common way to grab informations from others programs?

Posted: June 9th, 2006, 7:39 pm
by limbo
Hi Rafael.
The most common are:
. Shared memory access
. Registry
. Ini file
Posted: June 9th, 2006, 7:44 pm
by Rafael
Hi Limbo...
Just with shared memory...
And to proceed with this?
Posted: June 11th, 2006, 10:12 pm
by Rafael
I got directly from WMI counters...
static void Main(string[] args)
{
String dbase = "root\\WMI";
String query1 = "select Ndis80211ReceivedSignalStrength from MSNdis_80211_ReceivedSignalStrength where active = true";
ManagementObjectSearcher searcher = new ManagementObjectSearcher(@dbase,query1);
foreach (ManagementObject mo in searcher.Get())
{
Console.WriteLine("{0} dBm",mo["Ndis80211ReceivedSignalStrength"]);
}
}
Studing these controllers, I think that we can obtain specific information from motherboard sensors... Imagine, grab the CPU temperature without Speedfan or MBM....
A great program to explorer these counters is WMI Explorer....
