Click here to Skip to main content
15,927,213 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: Copy Constructors Pin
Nish Nishant14-Jan-06 17:22
sitebuilderNish Nishant14-Jan-06 17:22 
QuestionDynamically created property Pin
Soundman32.211-Jan-06 4:34
Soundman32.211-Jan-06 4:34 
AnswerRe: Dynamically created property Pin
Nish Nishant11-Jan-06 4:36
sitebuilderNish Nishant11-Jan-06 4:36 
QuestionRE: Sinh Calculator Pin
Dylan06038811-Jan-06 3:39
Dylan06038811-Jan-06 3:39 
AnswerRe: RE: Sinh Calculator Pin
Nish Nishant11-Jan-06 3:52
sitebuilderNish Nishant11-Jan-06 3:52 
Question[C++.NET] Using class of a VC6 and none-MFC DLL Pin
ChocoSoft10-Jan-06 21:56
ChocoSoft10-Jan-06 21:56 
AnswerRe: [C++.NET] Using class of a VC6 and none-MFC DLL Pin
Nish Nishant11-Jan-06 3:50
sitebuilderNish Nishant11-Jan-06 3:50 
AnswerRe: [C++.NET] Using class of a VC6 and none-MFC DLL Pin
ChocoSoft12-Jan-06 3:15
ChocoSoft12-Jan-06 3:15 
Thanks for your support Smile | :)

After some tries, I sill got a problem at built time and I think it's a big one.
I think it's due to my native DLL which is compiled with STLport and ZThread Libraries Frown | :-(
Here is the summary of what I've done :
I made a .net class library project. I added the good .lib and lib path in the link tab, the good include path in C++ tab, the good #include in my '.h' and click generate the soluce.
And .net said to me:
<br />
E:\Library\STLport-4.5.3\stlport\stl\_string.c(337): error C2143: erreur de syntaxe : absence de ';' avant '_STL::basic_string<_CharT,_Traits,_Alloc>::find'<br />

In english, it looks like this (I think):
<br />
E:\Library\STLport-4.5.3\stlport\stl\_string.c(337): error C2143: syntax error: no ';' found before '_STL::basic_string<_CharT,_Traits,_Alloc>::find'<br />


This error corresponds to the following code in the file "_string.c" of the STL:
<br />
template <class _CharT, class _Traits, class _Alloc> __size_type__<br />
basic_string<_CharT,_Traits,_Alloc> ::find(const _CharT* __s, size_type __pos, size_type __n) const <br />
{<br />
  if (__pos + __n > size())<br />
    return npos;<br />
  else {<br />
    const const_pointer __result =<br />
      _STLP_STD::search((const _CharT*)this->_M_start + __pos, (const _CharT*)this->_M_finish, <br />
			__s, __s + __n, _Eq_traits<_Traits>());<br />
    return __result != this->_M_finish ? __result - this->_M_start : npos;<br />
  }<br />
}<br />


If you have an idea of how can I solve this problem, I take it !!
Else I will continue to burn some candles at my village's church :-p
C U.
GeneralRe: [C++.NET] Using class of a VC6 and none-MFC DLL Pin
Nish Nishant12-Jan-06 3:31
sitebuilderNish Nishant12-Jan-06 3:31 
GeneralRe: [C++.NET] Using class of a VC6 and none-MFC DLL Pin
toxcct12-Jan-06 3:46
toxcct12-Jan-06 3:46 
GeneralRe: [C++.NET] Using class of a VC6 and none-MFC DLL Pin
Nish Nishant12-Jan-06 4:44
sitebuilderNish Nishant12-Jan-06 4:44 
GeneralRe: [C++.NET] Using class of a VC6 and none-MFC DLL Pin
ChocoSoft12-Jan-06 4:49
ChocoSoft12-Jan-06 4:49 
GeneralRe: [C++.NET] Using class of a VC6 and none-MFC DLL Pin
Nish Nishant12-Jan-06 6:36
sitebuilderNish Nishant12-Jan-06 6:36 
QuestionText Databasing Pin
LightWolf19879-Jan-06 17:46
LightWolf19879-Jan-06 17:46 
AnswerRe: Text Databasing Pin
toxcct9-Jan-06 21:58
toxcct9-Jan-06 21:58 
GeneralRe: Text Databasing Pin
Nish Nishant10-Jan-06 3:50
sitebuilderNish Nishant10-Jan-06 3:50 
AnswerRe: Text Databasing Pin
Nish Nishant10-Jan-06 3:49
sitebuilderNish Nishant10-Jan-06 3:49 
AnswerRe: Text Databasing Pin
Curtis Schlak.10-Jan-06 4:52
Curtis Schlak.10-Jan-06 4:52 
Questionprogram wont enter main() until character input is given Pin
maladuk9-Jan-06 8:08
maladuk9-Jan-06 8:08 
AnswerRe: program wont enter main() until character input is given Pin
Nish Nishant9-Jan-06 11:35
sitebuilderNish Nishant9-Jan-06 11:35 
GeneralRe: program wont enter main() until character input is given Pin
maladuk10-Jan-06 5:09
maladuk10-Jan-06 5:09 
GeneralRe: program wont enter main() until character input is given Pin
Nish Nishant10-Jan-06 5:23
sitebuilderNish Nishant10-Jan-06 5:23 
GeneralRe: program wont enter main() until character input is given Pin
maladuk10-Jan-06 10:12
maladuk10-Jan-06 10:12 
QuestionGet Windows Standard Dialog BKColor Pin
master879-Jan-06 3:22
master879-Jan-06 3:22 
AnswerRe: Get Windows Standard Dialog BKColor Pin
Nish Nishant9-Jan-06 3:35
sitebuilderNish Nishant9-Jan-06 3:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.