struct projectStructure
{
int mgrItem;
int buyrItem;
int decisionItem;
int artItem;
int cpyItem;
int advItem;
int lstItem;
int lblItem;
int prnItem;
int afixItem;
int delvrItem;
};
typedef struct projectStructure project;
//This is in a c source file. When I type:
int main()
{
project july4sale;
july4sale.artItem=20
....
}
I do not get intellisense at this point july4sale. Nothing happens =
after I type the period. I know it works the code seems correct but =
intellisense doesn't work. What have I done wrong? Thanks. Visual C++ =
6 SP5 Windows 2000.
--=20
George Hester
__________________________________