Click here to Skip to main content
15,949,686 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionDesign issues: How to make a windows always accessible? Pin
Yusuf26-Jun-06 17:09
Yusuf26-Jun-06 17:09 
AnswerRe: Design issues: How to make a windows always accessible? Pin
Ajesh.Sreevalsa26-Jun-06 18:27
Ajesh.Sreevalsa26-Jun-06 18:27 
QuestionRe: Design issues: How to make a windows always accessible? Pin
Yusuf27-Jun-06 9:30
Yusuf27-Jun-06 9:30 
QuestionRe: Design issues: How to make a windows always accessible? Pin
Sarath C26-Jun-06 18:28
Sarath C26-Jun-06 18:28 
AnswerRe: Design issues: How to make a windows always accessible? Pin
Yusuf27-Jun-06 9:34
Yusuf27-Jun-06 9:34 
QuestionHow to get materials of Text To Speech Pin
lovelyday26-Jun-06 16:48
lovelyday26-Jun-06 16:48 
AnswerRe: How to get materials of Text To Speech Pin
Ajesh.Sreevalsa26-Jun-06 18:18
Ajesh.Sreevalsa26-Jun-06 18:18 
QuestionPlease wireless Signal Strength know~~ Pin
Jung Sung Uk26-Jun-06 14:32
Jung Sung Uk26-Jun-06 14:32 
I don't know Signal Strength.

I codding Signal Strength and no error , run but discontinue.

Why discontinue program. Please Signal Strength program.~~

IWbemServices *pSvc = NULL;
IEnumWbemClassObject * pEnumerator = NULL;
HRESULT hres = pSvc->ExecQuery(bstr_t("WQL"), bstr_t("SELECT * FROM MSNdis_80211_ReceivedSignalStrength Where active=true"),
WBEM_FLAG_FORWARD_ONLY || WBEM_FLAG_RETURN_IMMEDIATELY, NULL, &pEnumerator);

IWbemClassObject *pclsObj;
ULONG uReturn = 0;

while (pEnumerator)
{
HRESULT hr = pEnumerator->Next(WBEM_INFINITE, 1, &pclsObj,
&uReturn); //WBEM_INFINITE

if(0 == uReturn)
{
//cout << "Need to BREAK!" << endl;
break;
}

VARIANT vtProp;
VariantInit(&vtProp);

// Get the value of the Name property
hr = pclsObj->Get(L"Ndis80211ReceivedSignalStrength", 0, &vtProp, 0, 0);
// wcout << " OS Name : " << vtProp.bstrVal << endl;

VariantClear(&vtProp);
}
QuestionChanging the color of a Button Control (Win32 API) Pin
capricious_00126-Jun-06 11:50
capricious_00126-Jun-06 11:50 
AnswerRe: Changing the color of a Button Control (Win32 API) Pin
alex.barylski26-Jun-06 16:12
alex.barylski26-Jun-06 16:12 
Questionchange files attributes Pin
RomTibi26-Jun-06 11:49
RomTibi26-Jun-06 11:49 
AnswerRe: change files attributes Pin
Michael Dunn26-Jun-06 11:59
sitebuilderMichael Dunn26-Jun-06 11:59 
AnswerRe: change files attributes Pin
Hamid_RT26-Jun-06 19:32
Hamid_RT26-Jun-06 19:32 
QuestionSaving Image to the same file. (GDI+) Pin
1980soyo26-Jun-06 11:35
1980soyo26-Jun-06 11:35 
AnswerRe: Saving Image to the same file. (GDI+) Pin
Ennis Ray Lynch, Jr.26-Jun-06 12:30
Ennis Ray Lynch, Jr.26-Jun-06 12:30 
AnswerRe: Saving Image to the same file. (GDI+) Pin
Joe Woodbury26-Jun-06 12:46
professionalJoe Woodbury26-Jun-06 12:46 
AnswerRe: Saving Image to the same file. (GDI+) Pin
1980soyo26-Jun-06 22:47
1980soyo26-Jun-06 22:47 
GeneralRe: Saving Image to the same file. (GDI+) Pin
Joe Woodbury27-Jun-06 6:06
professionalJoe Woodbury27-Jun-06 6:06 
Questiondeclaring a global variable Pin
Tara1426-Jun-06 8:31
Tara1426-Jun-06 8:31 
AnswerRe: declaring a global variable Pin
Jun Du26-Jun-06 8:48
Jun Du26-Jun-06 8:48 
GeneralRe: declaring a global variable [modified] Pin
Tara1426-Jun-06 9:06
Tara1426-Jun-06 9:06 
QuestionRe: declaring a global variable Pin
David Crow26-Jun-06 9:09
David Crow26-Jun-06 9:09 
AnswerRe: declaring a global variable Pin
Tara1426-Jun-06 9:15
Tara1426-Jun-06 9:15 
GeneralRe: declaring a global variable Pin
David Crow26-Jun-06 9:20
David Crow26-Jun-06 9:20 
GeneralRe: declaring a global variable Pin
Tara1426-Jun-06 10:19
Tara1426-Jun-06 10:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.