Hi! I'm trying to develop a windows form application using visual C++ in Visual Studio 2008 with the .Net framework 3.5, but i don't know how to include the moda library. I tried putting this line $(MARILOU_INSTALL_DIR_SDKS)\Moda\Includes in "Additional Include Directories" of C/C++ project properties and $(MARILOU_INSTALL_DIR_SDKS)\Moda\Libs to the Linker, but i get this errors:
1>AssemblyInfo.cpp
1>Generating Code...
1>Linking...
1>juan.obj : error LNK2028: unresolved token (0A00000F) "public: void __clrcall xkode::lib::ArrayList::Empty(bool)" (?Empty@ArrayList@lib@xkode@@$$FQAMX_N@Z) referenced in function "public: void __clrcall xkode::lib::ObjectsArray<class xkode::lib::String>::Clear(void)" (?Clear@?$ObjectsArray@VString@lib@xkode@@@lib@xkode@@$$FQAMXXZ)
1>juan.obj : error LNK2028: unresolved token (0A000010) "public: void * & __clrcall xkode::lib::ArrayList::operator[](int)" (??AArrayList@lib@xkode@@$$FQAMAAPAXH@Z) referenced in function "public: void __clrcall xkode::lib::ObjectsArray<class xkode::lib::String>::Clear(void)" (?Clear@?$ObjectsArray@VString@lib@xkode@@@lib@xkode@@$$FQAMXXZ)
1>juan.obj : error LNK2028: unresolved token (0A000012) "public: __clrcall xkode::lib::ArrayList::~ArrayList(void)" (??1ArrayList@lib@xkode@@$$FQAM@XZ) referenced in function "public: virtual __clrcall xkode::lib::ObjectsArray<class xkode::lib::String>::~ObjectsArray<class xkode::lib::String>(void)" (??1?$ObjectsArray@VString@lib@xkode@@@lib@xkode@@$$FUAM@XZ)
1>juan.obj : error LNK2028: unresolved token (0A000018) "public: int __clrcall xkode::lib::ArrayList::Count(void)const " (?Count@ArrayList@lib@xkode@@$$FQBMHXZ) referenced in function "public: void __clrcall xkode::lib::ObjectsArray<class xkode::lib::String>::Clear(void)" (?Clear@?$ObjectsArray@VString@lib@xkode@@@lib@xkode@@$$FQAMXXZ)
… (15 more errors like these above)
1>C:\Documents and Settings\Administrator\My Documents\CESAR\Marilou\manfred\juan\juan\Debug\juan.exe : fatal error LNK1120: 18 unresolved externals
1>Build log was saved at "file://c:\Documents and Settings\Administrator\My Documents\CESAR\Marilou\manfred\juan\juan\juan\Debug\BuildLog.htm"
1>juan - 19 error(s), 0 warning(s)
If I delete this line: #include "Modacpp.h", the program compiles. How can I include moda in this type of project?
