Click here to Skip to main content
16,013,918 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: WMI Pin
saisp5-Apr-07 7:51
saisp5-Apr-07 7:51 
GeneralRe: WMI Pin
David Crow5-Apr-07 8:03
David Crow5-Apr-07 8:03 
GeneralRe: WMI Pin
saisp5-Apr-07 8:11
saisp5-Apr-07 8:11 
GeneralRe: WMI Pin
David Crow5-Apr-07 8:17
David Crow5-Apr-07 8:17 
GeneralRe: WMI Pin
saisp5-Apr-07 8:21
saisp5-Apr-07 8:21 
QuestionRe: WMI Pin
David Crow5-Apr-07 8:28
David Crow5-Apr-07 8:28 
GeneralRe: WMI Pin
David Crow5-Apr-07 8:35
David Crow5-Apr-07 8:35 
GeneralRe: WMI Pin
saisp5-Apr-07 8:48
saisp5-Apr-07 8:48 
yes here it is
variant_t v;
hr = pClass->Get(L"IPAddress", 0, &v, NULL, NULL);
if (VT_NULL != v.vt)
{
LONG lBound;
BSTR Value;
SafeArrayGetUBound(V_ARRAY(&v), 1, &lBound);
while (lBound >= 0) {
SafeArrayGetElement(V_ARRAY(&v), &lBound, &Value);
TRACE("IPAddress[%u] = %S\n", lBound, Value);
fprintf(fp,"%u", value); lBound--; } }

GeneralRe: WMI Pin
David Crow5-Apr-07 8:49
David Crow5-Apr-07 8:49 
GeneralRe: WMI Pin
David Crow5-Apr-07 9:45
David Crow5-Apr-07 9:45 
GeneralRe: WMI Pin
saisp5-Apr-07 18:53
saisp5-Apr-07 18:53 
GeneralRe: WMI [modified] Pin
cp98765-Apr-07 18:58
cp98765-Apr-07 18:58 
GeneralRe: WMI Pin
deeps_cute5-Apr-07 19:31
deeps_cute5-Apr-07 19:31 
GeneralRe: WMI Pin
cp98765-Apr-07 19:41
cp98765-Apr-07 19:41 
GeneralRe: WMI Pin
David Crow6-Apr-07 2:36
David Crow6-Apr-07 2:36 
QuestionHow to convert BDF files to XML file ? Pin
black_puma5-Apr-07 4:01
black_puma5-Apr-07 4:01 
QuestionAppVerifier Pin
Try5-Apr-07 3:37
Try5-Apr-07 3:37 
AnswerRe: AppVerifier Pin
Jim @ JCT5-Apr-07 4:46
Jim @ JCT5-Apr-07 4:46 
GeneralRe: AppVerifier Pin
Try5-Apr-07 5:03
Try5-Apr-07 5:03 
GeneralRe: AppVerifier Pin
ThatsAlok22-Apr-07 23:23
ThatsAlok22-Apr-07 23:23 
QuestionHow to change caption Font,and menu font in VC++6.0 project. Pin
Atul235-Apr-07 3:28
Atul235-Apr-07 3:28 
QuestionGN_CONTEXTMENU Pin
deeps_cute5-Apr-07 2:34
deeps_cute5-Apr-07 2:34 
QuestionRe: GN_CONTEXTMENU Pin
David Crow5-Apr-07 2:44
David Crow5-Apr-07 2:44 
AnswerRe: GN_CONTEXTMENU Pin
deeps_cute5-Apr-07 2:47
deeps_cute5-Apr-07 2:47 
QuestionRe: GN_CONTEXTMENU Pin
David Crow5-Apr-07 2:51
David Crow5-Apr-07 2:51 

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.