PDA

View Full Version : Unresolved External Symbol



munna
10th May 2006, 20:10
Hi,

I am trying to do away with the .net IDE and therfore was trying vim 7 with command line compilation. My project uses ShellExecuteW fuction which is window specific and therfore it gives the error which says:

Unresolved external symbol __imp__ShellExecuteW.......

Can someone please tell me how can resovle this?

Also, I am trying to figure out how will I debug my application. Can some one please tell me the best way to do this ?

Another silly question.

Vim 7 has the tab feature, but I have not been able to figure out how to move between tabs using the keyboard. If any of you know, please help!!

Thanks a lot.

jacek
10th May 2006, 20:25
My project uses ShellExecuteW fuction which is window specific and therfore it gives the error which says:

Unresolved external symbol __imp__ShellExecuteW.......

Can someone please tell me how can resovle this?
Add "LIBS += -lshell32" to your .pro file.

PS. Please, don't ask multiple unrelated questions in one thread.