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
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