CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jul 1999
    Location
    Israel
    Posts
    140

    Can't make my DLL

    I am tring to make my DLL (Binary compatability)
    and I am getting an error "window's linker - Can't open the file x.dll" even if I don't using this DLL at all.
    Any ideas?



  2. #2
    Guest

    Re: Can't make my DLL

    From Microsoft Knowledge Base:
    When compiling an ActiveX component with binary compatibility set to the same file the compile is attempting to overwrite, the following error occurs:
    LINK fatal error LNK1104 cannot open file.
    To work around this problem, copy the ActiveX executable or DLL to a separate directory. Set binary compatibility to the copied file, and compile to the original directory. This procedure is described in Microsoft Visual Basic Books Online.
    Hope This Helps.



  3. #3
    Join Date
    Jul 1999
    Location
    Israel
    Posts
    140

    Re: Can't make my DLL

    Thanks!!! It helps!.
    Can you tell me where excatly i can find info about this problem.
    Thanks
    Sigal.


  4. #4
    Guest

    Re: Can't make my DLL

    Got Microsoft Knowledge Base and key in you error string. or follow the follwoing URL:
    http://search.support.microsoft.com/...MSDN&DU=C&FR=1


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured