September 26th, 2011 12:00 PM
Try to read this
http://stackoverflow.com/questions/252226/signing-a-windows-exe-file
and this
http://msdn.microsoft.com/en-us/library/8s9b9yaz(v=vs.80).aspx
September 24th, 2011 12:35 PM
You can use Native WiFi components: http://msdn.microsoft.com/en-us/library/windows/desktop/ms706556(v=vs.85).aspx
It seems that WlanGetAvailableNetworkList can do the thing you need....
February 16th, 2011 01:52 PM
February 16th, 2011 12:11 PM
http://forums.devx.com/archive/index.php/t-99138.html
April 12th, 2010 11:12 PM
Wild guess #3. ))
If your button handlers "execute different things", the fact you have variables with the same types and names in each of them is not a sufficient reason to make these variables...
April 10th, 2010 02:07 AM
Have you tried to look for this window using some tool, for example spy++?
March 14th, 2010 04:32 AM
I encountered this problem before when I compiled my VC 6.0 project in VS 2005. The problem is, as Paul McKenzie said, starting from vs2005 std::vector<T>::iterator and T * are not the same. So you...