VS2003 C++ Intellisense Stops working in Win32 Console Project (MAPI)

R

Russell Mangel

I am using VS2003 C++ (Win32 Console Project).
I am developing against Extended MAPI.
Problem:
Intellisense Stops working.

Is there something I am doing wrong, this code compiles fine.
Why does intellisense stop working?
Intellisense works fine with this same code in VS 6.0.

// Intellisense works okay until after this line of code.
static SizedSPropTagArray(NUM_COLS, sptCols) = {NUM_COLS, PR_ENTRYID,
PR_DISPLAY_NAME};

// Intellisense stops working here
for (i = 0; i < pRows -> cRows; i++)
{
printf("%s\n", pRows->aRow.lpProps[NAME].Value.bin.cb);
}

Thanks
Russell Mangel
Las Vegas, NV
 
W

William DePalo [MVP VC++]

Russell Mangel said:
I am using VS2003 C++ (Win32 Console Project).
I am developing against Extended MAPI.
Problem:
Intellisense Stops working.

Closing the project, deleting the .ncb (no compile browser) file and
reopening the project might bring it back.

Regards,
Will
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top