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

Search:

Type: Posts; User: RituP

Search: Search took 0.02 seconds.

  1. Drag and Drop from listviews into a single treeview using C++ or VC++

    Hi All,

    I have gone thought the discussion on Drag and drop topics in this forum and as I have not worked on MFC's much, I am facing difficulty in understanding how to adapt the drag-drop concept...
  2. Re: LoadLibrary giving system err 183 while loading Crypto dll

    @ 2kaud - wow!...this worked! :)
    Tried out your suggestion -try first to LoadLibrary "msvcrt", then LoadLibrary "cryptocpp.dll" (using full path) and then LoadLibrary "crypto.dll" (using full...
  3. Re: LoadLibrary giving system err 183 while loading Crypto dll

    In my sample code, if I try to hardcode the full path (along with the dll name) for crypto. I have removed all the instances of the crypto, cryptowrapper and cryptopp dlls from this machine. Just one...
  4. Re: LoadLibrary giving system err 183 while loading Crypto dll

    I tried out the sample program as per your suggestion in post #12. Below is the code:


    void main(int argc, TCHAR * argv[])
    {

    HINSTANCE myCrypto = (HINSTANCE)NULL;
    myCrypto =...
  5. Re: LoadLibrary giving system err 183 while loading Crypto dll

    Thanks 2kaud, I tried your suggestion with the dwFlags DONT_RESOLVE_DLL_REFERENCES and even that didn’t work. It didn’t give me error 183 this time while loading the crypto.dll. As per my log file,...
  6. Re: LoadLibrary giving system err 183 while loading Crypto dll

    hi 2kaud,

    The JNI Cryptowrapper program has a reference of the two functions encrypt/decrypt of crypto.dll.
    typedef int (*ENCRYPT) (char *, char *, char *);
    typedef int (*DECRYPT) (char *, char...
  7. Re: LoadLibrary giving system err 183 while loading Crypto dll

    Hi Paul,

    Thats the very first thing even we tried out - hardcoding the path and then also it gave us the same error 183. Moreover we are writing all the variable values in a log file, so we do...
  8. Re: LoadLibrary giving system err 183 while loading Crypto dll

    A slight correction in the last line of my original post. This issue is Not recreated on all the test machines. However, on multiple machines where it does gets recreated, I am able to replicate it...
  9. Re: LoadLibrary giving system err 183 while loading Crypto dll

    @VictorN - yes, "cryptoPath1" a full pathname (including the dll name).

    @2kaud - yes, 183 means 'Cannot create a file when that file already exists.' ..I am not sure what it means. Does it mean...
  10. LoadLibrary giving system err 183 while loading Crypto dll

    We are facing some issue with crypto dll (C++ dll distributed by Wei Dai)and would really appreciate if you could help on this. We are using cryptopp version 5.6.1.0.

    We have 2 separate java...
Results 1 to 10 of 10





Click Here to Expand Forum to Full Width

Featured