VC++ .NET IntelliSense Problem with IVideoDriver

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
Yoshikai
Posts: 1
Joined: Thu Dec 18, 2003 6:14 am

VC++ .NET IntelliSense Problem with IVideoDriver

Post by Yoshikai »

I'm very new to Irrlicht and was wondering if anyone else had experienced this. I'm using MS VC++ .NET and have noticed that the code completion/intellisense works great for all Irrlicht object types (IrrlichtDevice, ISceneManager, IGUIEnvironment, etc) EXCEPT for IVideoDriver. If I type something like this:

IVideoDriver* driver = device->getVideoDriver();
driver->

Then normally at this point a list of IVideoDriver class members would pop up, but instead I get "IntelliSense: 'Expression to the left of . or -> has a type which could not be resolved'". It makes me very sad every time I see it. Has anyone else noticed this, is there any way to fix it? Thanks!
Boogle
Posts: 162
Joined: Fri Nov 21, 2003 3:16 pm
Location: Toronto, Canada

Post by Boogle »

It works for me in general, however my Intellisense seems to be kind of finicky. It works in most areas of code but sometimes not. Is this problem happening for you in all of your methods?
saigumi
Posts: 921
Joined: Fri Aug 22, 2003 11:31 am
Location: St. Louis, MO USA
Contact:

Post by saigumi »

Yeah, this bewildered me the first time it happened to me. Now, I post this tip every time Niko makes a release.

1. Go into your project's directory.
2. Make sure that the project is closed and VC++ is not running.
3. Delete the .NCB file.

This is where intellisense stores it's function listings. It will be rebuilt the next time you open the project.
Crud, how do I do this again?
niko
Site Admin
Posts: 1759
Joined: Fri Aug 22, 2003 4:44 am
Location: Vienna, Austria
Contact:

Post by niko »

saigumi wrote:Yeah, this bewildered me the first time it happened to me. Now, I post this tip every time Niko makes a release.
Hehe, maybe I should add your tip into the readme :)
Chev
Posts: 37
Joined: Wed Nov 19, 2003 6:15 am

Post by Chev »

neato! was wondering why that was acting up.
Post Reply