Works in VC6++, fails in VC2003

Started by
10 comments, last by Bruno 17 years, 10 months ago
The source tags work like so:

[__source__]
// Your C++ code
// ...
// ...

[__/source__]

Just omit the underscores.



As for your CalCoreModel constructor, I can't see anything wrong with it ... except you say it calls the constructor of class CalCoreSkeleton ... I'm assuming by making an instance of that class ... but I don't see where. You seem to be using Hungarian notation so I take it your m_pCoreSkeleton member is a pointer to a CalCoreSkeleton instance, and you're only setting that to null in your example?
Advertisement
Ok, got it working, lol

The problem is that, i had imported the project from VC6 , and the working directory was being aimed at the folder where the vc6 project was, so the vc2003 project was actually using the library dll compiled for vc6 instead of the library dll compiled for the vc2003 version., so, my bad :)

thanks anyways guys

This topic is closed to new replies.

Advertisement