Thread: Where can i find mvc++ tutorials

  1. #1
    Flash Animator, OF DOOOOM bluehead's Avatar
    Join Date
    Nov 2001
    Posts
    269

    Where can i find mvc++ tutorials

    subject says all
    Code:
    #if _emo
      #define stereo_type_i_dislike
    #endif

  2. #2
    Flash Animator, OF DOOOOM bluehead's Avatar
    Join Date
    Nov 2001
    Posts
    269

    ok n/m

    how do i make a window?
    Code:
    #if _emo
      #define stereo_type_i_dislike
    #endif

  3. #3
    Registered User C_Coder's Avatar
    Join Date
    Oct 2001
    Posts
    522
    A window can be made as easily as
    Code:
    #include <windows.h>
    
    int WINAPI WinMain( HINSTANCE hThisInst, HINSTANCE hPrevInst, LPSTR lpszArgs, int nWinMode)
    {
    	MessageBox( NULL, "My First Window", "Window", MB_OK );
    
    	return 0;
    }
    However a proper window will require much more code and understanding.
    http://sunlightd.virtualave.net/Windows/GUI/
    All spelling mistakes, syntatical errors and stupid comments are intentional.

  4. #4

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 3
    Last Post: 04-06-2007, 05:10 PM
  2. Why don't the tutorials on this site work on my computer?
    By jsrig88 in forum C++ Programming
    Replies: 3
    Last Post: 05-15-2006, 10:39 PM
  3. Wiki for Tutorials
    By jverkoey in forum A Brief History of Cprogramming.com
    Replies: 7
    Last Post: 08-16-2005, 03:03 PM
  4. Find Dialog
    By Lithorien in forum Windows Programming
    Replies: 6
    Last Post: 04-25-2005, 05:28 PM
  5. Replies: 5
    Last Post: 04-16-2004, 01:29 AM