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

Search:

Type: Posts; User: 65dos

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    1,035

    Re: weird problem with .exe

    Hi
    thank you for the replies, I checked the output of my program and some symbols are not loading

    'MoyaFTW.exe': Loaded 'C:\moyaftw\moyaFtw\MoyaFTW\Release\MoyaFTW.exe', Symbols loaded....
  2. Replies
    5
    Views
    1,035

    weird problem with .exe

    Hi
    I have a "little" problem with an application I made with Visual C++ (2010) when I am debugging it I don't have any problem, also when I use the .exe generated (in the debug/release folder)...
  3. Replies
    8
    Views
    36,014

    Re: LoadLibrary("*.dll") vs LoadLibraryA(".dll")

    well, it compiles but the compiler sends an incompatible type warning:
    char[10] is incompatible to type LPCWSTR.

    but when I used 'L' on LoadLibrary( L"zlib1.dll") it removed the warning.

    on...
  4. Replies
    8
    Views
    36,014

    Re: LoadLibrary("*.dll") vs LoadLibraryA(".dll")

    thanks guys

    the problem was the character set: Unicode

    so I need to use LoadLibrary( L"zlib1.dll")

    or change the character set to multibyte
  5. Replies
    8
    Views
    36,014

    LoadLibrary("*.dll") vs LoadLibraryA(".dll")

    hey,
    I am programming an ansi C application that needs to load a .dll.
    My line of code is the next:
    hCodigo = LoadLibrary("zlib1.dll");

    when I try to run the program that way it doesnt...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured