Click here to Skip to main content
15,893,508 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Putting a COM dll inside a COM dll Pin
Chris Meech5-Nov-12 7:13
Chris Meech5-Nov-12 7:13 
Questionclient server query Pin
akki2309915-Nov-12 1:35
akki2309915-Nov-12 1:35 
AnswerRe: client server query Pin
Richard MacCutchan5-Nov-12 3:19
mveRichard MacCutchan5-Nov-12 3:19 
AnswerRe: client server query Pin
CPallini5-Nov-12 10:47
mveCPallini5-Nov-12 10:47 
Questionhow to get drive list without using COM? Pin
Le@rner4-Nov-12 23:15
Le@rner4-Nov-12 23:15 
AnswerRe: how to get drive list without using COM? Pin
Santhosh G_4-Nov-12 23:37
Santhosh G_4-Nov-12 23:37 
GeneralRe: how to get drive list without using COM? Pin
Le@rner4-Nov-12 23:41
Le@rner4-Nov-12 23:41 
AnswerRe: how to get drive list without using COM? Pin
Sajeesh Payolam5-Nov-12 2:28
Sajeesh Payolam5-Nov-12 2:28 
QuestionRe: how to get drive list without using COM? Pin
David Crow5-Nov-12 2:48
David Crow5-Nov-12 2:48 
Questioncoinitializesecurity failed with error code 800706ba ! Pin
Le@rner4-Nov-12 17:33
Le@rner4-Nov-12 17:33 
AnswerRe: coinitializesecurity failed with error code 800706ba ! Pin
Jochen Arndt4-Nov-12 21:42
professionalJochen Arndt4-Nov-12 21:42 
AnswerRe: coinitializesecurity failed with error code 800706ba ! Pin
Richard MacCutchan4-Nov-12 21:45
mveRichard MacCutchan4-Nov-12 21:45 
GeneralRe: coinitializesecurity failed with error code 800706ba ! Pin
Le@rner4-Nov-12 23:43
Le@rner4-Nov-12 23:43 
GeneralRe: coinitializesecurity failed with error code 800706ba ! Pin
Richard MacCutchan5-Nov-12 3:10
mveRichard MacCutchan5-Nov-12 3:10 
QuestionWhy the CTreeCtrl disable[solved] Pin
yu-jian4-Nov-12 4:59
yu-jian4-Nov-12 4:59 
AnswerRe: Why the CTreeCtrl disable Pin
Richard MacCutchan4-Nov-12 5:13
mveRichard MacCutchan4-Nov-12 5:13 
GeneralRe: Why the CTreeCtrl disable Pin
yu-jian4-Nov-12 15:28
yu-jian4-Nov-12 15:28 
Sorry

CPoint point;
GetCursorPos(&point);
this->ScreenToClient(&point);
CRect  rect;
rect.top = point.y;
rect.left = point.x;
rect.right = rect.left + 200;
rect.bottom = rect.top  + 300;

CComboBox* pComboBox = new CComboBox();
pComboBox->Create(WS_VISIBLE, rect, this, NULL);
pComboBox->ShowWindow(SW_SHOW);

CDeviceInfoArray  arrDeviceInfo;
          ...

    for(int i = 0; i < arrDeviceInfo.GetCount(); ++i)
    {
        CString  strDevice;
        strDevice.Format("%d", arrDeviceInfo[i]);

        pComboBox->AddString(strDevice);
    }

QuestionRe: Why the CTreeCtrl disable Pin
David Crow4-Nov-12 16:18
David Crow4-Nov-12 16:18 
AnswerRe: Why the CTreeCtrl disable Pin
yu-jian4-Nov-12 16:35
yu-jian4-Nov-12 16:35 
GeneralRe: Why the CTreeCtrl disable Pin
Richard MacCutchan4-Nov-12 21:22
mveRichard MacCutchan4-Nov-12 21:22 
AnswerRe: Why the CTreeCtrl disable Pin
chaau4-Nov-12 10:57
chaau4-Nov-12 10:57 
AnswerRe: Why the CTreeCtrl disable Pin
Sajeesh Payolam4-Nov-12 19:42
Sajeesh Payolam4-Nov-12 19:42 
Questionhow can i set modem speed when i create rasdial entry. Pin
dolpari7013-Nov-12 22:03
dolpari7013-Nov-12 22:03 
QuestionLock a file Pin
Iain Wiseman3-Nov-12 16:46
Iain Wiseman3-Nov-12 16:46 
AnswerRe: Lock a file Pin
Richard MacCutchan3-Nov-12 21:25
mveRichard MacCutchan3-Nov-12 21:25 

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.