Is it possible to configure IntelliSense in VC++ so that it not only shows the members of a class, but also what the members are defined as?

eg: instead of showing the following when typing "x." :

a
b
c

as "a", "b" and "c" are all members of class "x". Is is possible to get it to show this instead:

int a
char b
char *c

(etc)

CodeWright does the later, which comes in very useful, but no matter how I configure Codewright, it refuses to show any information on the windows include files and will only auto complete classes defined in the project