CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 15 of 35

Threaded View

  1. #14
    Join Date
    Feb 2009
    Location
    Portland, OR
    Posts
    1,488

    Re: MS Visual Studio 2010 and support for Windows 9x and 2000

    Quote Originally Posted by Paul McKenzie View Post
    To make the point more clear, create an EXE file, and drag it into Dependency Walker.
    OK. I knew you'd ask it. So here you go. Two projects:

    1. TestConsoleSize.exe
    No MFC
    Release Build (with MS VS 2010)
    Use standard Windows Libraries
    Size: 6.50 KB
    Code:
    	_tprintf(_T("Hello World!\n"));
    	getchar();
    2. TestConsoleSizeWithMFC.exe
    Same thing but With MFC
    Release Build (with MS VS 2010)
    Use MFC in a Static Library
    Size: 1.54 MB
    Code:
    	CString s;
    	s.Format(_T("Hello World!\n"));
    	_tprintf(s);
    	getchar();
    Attached Images Attached Images   

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