Click here to Skip to main content
15,902,112 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralCSocket and CWinThread Pin
y_seval27-Oct-03 0:55
y_seval27-Oct-03 0:55 
GeneralRe: CSocket and CWinThread Pin
vcplusplus27-Oct-03 1:50
vcplusplus27-Oct-03 1:50 
QuestionHow to change the font size and color of the fonts in a edit box Pin
Deepak Samuel27-Oct-03 0:00
Deepak Samuel27-Oct-03 0:00 
AnswerRe: How to change the font size and color of the fonts in a edit box Pin
Steve S27-Oct-03 1:37
Steve S27-Oct-03 1:37 
GeneralOutlook Automation (C++) Pin
chz171065xy26-Oct-03 23:20
chz171065xy26-Oct-03 23:20 
GeneralRe: Outlook Automation (C++) Pin
Heath Stewart27-Oct-03 3:24
protectorHeath Stewart27-Oct-03 3:24 
GeneralRe: Outlook Automation (C++) Pin
chz171065xy27-Oct-03 21:37
chz171065xy27-Oct-03 21:37 
GeneralRe: Outlook Automation (C++) Pin
David Crow28-Oct-03 4:08
David Crow28-Oct-03 4:08 
Using Outlook's type library:

COleVariant     vtOptional((long) DISP_E_PARAMNOTFOUND, VT_ERROR),
                vtTrue((short) TRUE);
_Application    app;
_NameSpace      ns;
MAPIFolder      folderInbox;
 
if (app.CreateDispatch("Outlook.Application") == TRUE)
{
    ns = app.GetNamespace("MAPI");
 
    ns.Logon(vtOptional, vtOptional, vtOptional, vtTrue);
        
    folderInbox = ns.GetDefaultFolder(6); // Inbox
}



Five birds are sitting on a fence.
Three of them decide to fly off.
How many are left?

Generalurgent! Pin
ranjjj26-Oct-03 22:57
ranjjj26-Oct-03 22:57 
GeneralRe: urgent! Pin
David Crow27-Oct-03 2:46
David Crow27-Oct-03 2:46 
GeneralRe: urgent! Pin
ranjjj27-Oct-03 17:04
ranjjj27-Oct-03 17:04 
GeneralRe: urgent! Pin
David Crow28-Oct-03 2:45
David Crow28-Oct-03 2:45 
GeneralRe: urgent! Pin
ranjjj28-Oct-03 2:56
ranjjj28-Oct-03 2:56 
GeneralRe: urgent! Pin
David Crow28-Oct-03 3:09
David Crow28-Oct-03 3:09 
GeneralRe: urgent! Pin
ranjjj28-Oct-03 0:48
ranjjj28-Oct-03 0:48 
GeneralRe: urgent! Pin
David Crow28-Oct-03 3:02
David Crow28-Oct-03 3:02 
GeneralRe: urgent! Pin
ranjjj28-Oct-03 3:22
ranjjj28-Oct-03 3:22 
GeneralRe: urgent! Pin
David Crow28-Oct-03 4:10
David Crow28-Oct-03 4:10 
GeneralRe: urgent! Pin
ranjjj28-Oct-03 17:02
ranjjj28-Oct-03 17:02 
GeneralRe: urgent! Pin
David Crow28-Oct-03 3:05
David Crow28-Oct-03 3:05 
GeneralRe: urgent! Pin
ranjjj28-Oct-03 3:27
ranjjj28-Oct-03 3:27 
GeneralRe: urgent! Pin
Anonymous28-Oct-03 22:49
Anonymous28-Oct-03 22:49 
GeneralRe: urgent! Pin
ranjjj28-Oct-03 22:53
ranjjj28-Oct-03 22:53 
QuestionHow to handle right mouse button click in menu Pin
kotbegemot26-Oct-03 22:24
kotbegemot26-Oct-03 22:24 
AnswerRe: How to handle right mouse button click in menu Pin
Michael Dunn27-Oct-03 4:10
sitebuilderMichael Dunn27-Oct-03 4:10 

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.