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

Search:

Type: Posts; User: AlexWu

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    675

    How to include DirectX SDK to VC++ 2010

    How to include DirectX SDK to VC++ 2010? please help
  2. Re: Export Integer form Injected DLL to a Client executable

    Igor Vartanov, Thank you for your example (+ rep) I just saw your post and built both files. It works as magic, I just need a lil time to fully absorb it’s concept before I’ll ask more questions...
  3. Replies
    4
    Views
    5,214

    Re: MessageBox Display Integer, VC++

    Chris_F, Thank you, you made my day and you sure know your C++!

    this worked as a charm

    \
    typedef basic_stringstream<wchar_t> wstringstream;
    wstringstream ss;
  4. Replies
    4
    Views
    5,214

    Re: MessageBox Display Integer, VC++

    Hey Chris F, I changed my code but I still get error message

    Visual C++ highlights “ss” from “ss.str()”

    std::Stringsteam ss
    error: argument of type "const char *:is incompatable with...
  5. Replies
    4
    Views
    5,214

    [RESOLVED] MessageBox Display Integer, VC++

    I looked all over internet for examples on how to make TextBox with an integer in it but every single example returned error messages.

    Can some on help me with code on how to create MessageBox...
  6. Re: Export Integer form Injected DLL to a Client executable

    Guys, Thanks for your input but I’m not sure what you are trying to say! -.-



    No Idea, but it works :S



    Are you saying my DLL doesn’t work? My DLL works, it makes timer for Winmine jump...
  7. Re: Export Integer form Injected DLL to a Client executable

    Oh yea, What my DLL does is change timer on Winmine
  8. Export Integer form Injected DLL to a Client executable

    My DLL:


    #include <iostream>
    #define DllExport __declspec( dllexport )
    #include "main.h"
    #include <windows.h>
  9. Replies
    11
    Views
    1,345

    Re: VC++, Calling DLLs

    Edit: Nvm i figured it out and gave you feed back
  10. Replies
    11
    Views
    1,345

    Re: VC++, Calling DLLs

    Igor Vartanov, OMG Thank you so much !!!, what you did is the best tutorial I ever seen on c++ DLLs. I compiled both files and it works like a charm. Plus, I had no idea that you need a “dll.lib”...
  11. Replies
    11
    Views
    1,345

    [RESOLVED] VC++, Calling DLLs

    I have a problem with calling VC++ DLL. I have no problem to create inject able DLLs, but I can’t figure out how to call DLLs that I created in VC++. In C# it’s so much easier since you can add...
Results 1 to 11 of 11





Click Here to Expand Forum to Full Width

Featured