Visual Studio Code Completion

Discussion about everything. New games, 3d math, development tips...
Post Reply
bitmapbrother
Posts: 34
Joined: Wed Aug 10, 2005 6:15 am

Visual Studio Code Completion

Post by bitmapbrother »

Hi, when I use this in my code:

Code: Select all

aabbox3df player_box;
and on following line I try to access Player-> (or just anything other) then
visual studio writes "IntelliSense: No additional information available" to
its status bar and code completion doesnt work more on following lines.
I was searching options but found nothing - if someone have idea let me
know how to fix this pls - thx and have a nice day :)
eXodus
Posts: 320
Joined: Tue Jan 04, 2005 10:07 am
Location: Canada
Contact:

Post by eXodus »

Which version of Visual Studio do you use?
bitmapbrother
Posts: 34
Joined: Wed Aug 10, 2005 6:15 am

Post by bitmapbrother »

Its 7.1.3088.
eXodus
Posts: 320
Joined: Tue Jan 04, 2005 10:07 am
Location: Canada
Contact:

Post by eXodus »

I haven't made an extensive use of that version. All I know is with the arrival of version 8.x, most developpers said "They gave us back our C++!". I guess its support wasn't that great but I could be wrong.

Does this happen following a call to a base class ( someClass : baseClass() ) ?
Fred

Post by Fred »

Don't you mean:

player_box.

Not

player_box->
Fred

Post by Fred »

Don't you mean:

player_box.

Not

player_box->
Post Reply