CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 2014
    Posts
    1

    Unhappy uafxcwd.lib/nafxcwd.lib missing(error:1104)

    I have installed visual studio 2012 xpress for desktop application. To use mfc framework also installed wdk 7.1 and include files and libraries. after that i executed the code:

    "
    #include<afxwin.h>

    //#pragma comment(lib, "uafxcwd")

    struct CSimpleApp : public CWinApp
    {
    BOOL InitInstance() { return TRUE; }
    };
    CSimpleApp theApp; "

    But it is showing error:
    Error 1 error LNK1104: cannot open file 'uafxcwd.lib'

    I tried with both shared and static mfc library with both character set i.e. unicode and multi byte.

    Please help me

  2. #2
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

Tags for this Thread

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