CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Eliseu_CEL

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    3,708

    Re: opengl and managed code

    It was missing PDAManager.dll in a folder. After copy it, the problem disappear.

    Now everything is fine.
  2. Replies
    4
    Views
    3,708

    Re: opengl and managed code

    Thank you for the links Alex. But these don’t work for me.

    Let me explain my problem better.

    I have a solution that has basically an interface project (main project) written in C# (called...
  3. Replies
    4
    Views
    3,708

    Re: opengl and managed code

    Hi. I have the same problem of you. In My solution I have a project that uses opengl. I have other project that is mixed: an managed wrapper that wrap unmanaged code. This managed wrapper exports...
  4. Re: What can be wrong that makes me unable to debug native C++ code?

    I 've found the solution here:

    http://blogs.msdn.com/stevejs/archive/2004/05/05/126497.aspx



    and here:
  5. Re: VS 2005 beta2 - error LNK2001 unresolved external symbol "?.cctor@@$$FYMXXZ" (?.c

    Sorry guys... There was already a thread with this subject:

    http://www.codeguru.com/forum/showthread.php?t=346998&highlight=error+LNK2001
  6. VS 2005 beta2 - error LNK2001 unresolved external symbol "?.cctor@@$$FYMXXZ" (?.cct

    Hi guys. I’ve changed my project, a project that has a C++ Managed wrapper who encapsulate C++ Native/unmanaged code, from VS 2003 to VS 2005 beta. Now, when I’ve compiled/linked it for the first...
  7. Replies
    6
    Views
    5,030

    Re: Who knows a good C++/CLI book?

    Which version of Visual Studio are you using? If you have 2005 version this book is for you.
  8. Re: What can be wrong that makes me unable to debug native C++ code?

    more information about it...

    http://blogs.msdn.com/stevejs/archive/2004/05/05/126497.aspx
    http://blogs.msdn.com/greggm/archive/2004/01/23/62455.aspx

    about Call Stack that doesn't work with...
  9. Replies
    6
    Views
    5,030

    Re: Who knows a good C++/CLI book?

    Here you will get some:

    http://www.apress.com/book/bookDisplay.html?bID=95
    http://www.amazon.com/gp/product/1590590333/104-4081171-6848731?v=glance&n=283155...
  10. What can be wrong that makes me unable to debug native C++ code?

    Hi. I have a mixed project (C++ Managed library) that uses managed and unmanaged code. I am having problems in debugging native (unmanaged) code. The breakpoints don’t work (when I put one in the...
  11. Re: Internal Errors in VC++7\PlatformSDK\ - help

    See the solution in http://www.codeguru.com/forum/showthread.php?t=374155.

    Thanks.
  12. Re: What can I do to use wtypes without internal errors?

    Thank you NoHere.

    Actually what I changed, and now everything is working ok, is that.

    Old code:



    #pragma once
  13. What can I do to use wtypes without internal errors?

    I have a project that uses legacy code C++ with lots of references to the file wtypes.h. Basically this use the function wsprintf and PALETTEENTRY. If I include this file I get the error C2872 in ...
  14. Re: Internal Errors in VC++7\PlatformSDK\ - help

    I need to use "wtypes.h" because I have legacy code in my project that uses "LOGPALETTE" and "wsprintf".

    How I can use that without have this error?
  15. Re: Using an template instance as a private member of a manged class. Is it possible?

    I have simplified my code above, than you guys can understand easier.
  16. Re: Using an template instance as a private member of a manged class. Is it possible?

    What is interesting is that I can use templates on a implementation of an method on the managed class (PdaManager).

    This code has compiled all right. No Problem at all!

    See:



    void...
  17. Using an template instance as a private member of a manged class. Is it possible?

    I would like to use a template class instance as a private member of a Managed Class. Is it possible?

    I´ve tried this on my managed class:


    // PDAManager.h

    #include "lista.h"
  18. Replies
    3
    Views
    5,806

    Re: LINK : warning LNK4243

    Cool....

    I have added __DllMainCRTStartup@12 on Linker/Input/Force Symbol References, and now I don´t have link warnings.



    Thanks Nohero.
  19. Replies
    3
    Views
    5,806

    LINK : warning LNK4243

    I have a C++.Net Library project that wrap C++ unmanaged classes. I will use this Library in a C#.Net application.

    Now, after a hard work, and with helps of Nohero and Darwen, I could clean the...
  20. Replies
    2,341
    Views
    2,915,479

    Sticky: Re: CG members photo album

    Thanks Kirants.... That´s it. It was a good time....
  21. Replies
    2,341
    Views
    2,915,479

    Sticky: Re: CG members photo album

    Thak you Cherish. Nice to meet you! =D
  22. Re: LINK error: LNK2020 - Should I link the unmanaged libraries , ?

    But for my project i get link errors if I do not use _hypot _strupr. Just for these 2. For anothers functions, I do not need to use underscore.

    I ´ve put my project. See it in Basicas.cpp and...
  23. Re: LINK error: LNK2020 - Should I link the unmanaged libraries , ?

    Thanks for your help Darwen. Ive´run your project. It´s worked.

    I just do not understand why i needed to change strupr(x) to
    _strupr(x), or hypot for _hypot???

    Do you have a clue about this?
  24. Re: LINK error: LNK2020 - Use of MSVCP71.DLL

    NoHero, on that link there is this option



    It says:


    What does it means:
  25. Re: LINK error: LNK2020 - Should I link the unmanaged libraries , ?

    Thanks Guys.

    I really apreciate your help. I am not on the office now. I will come back on MOnday and I will test your sugestion. Yes NOHero, I was looking this table of LIBs today but I did not...
Results 1 to 25 of 35
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured