Thread: Am I ready for Win32 programming?

  1. #1
    Registered User
    Join Date
    Aug 2002
    Posts
    23

    Am I ready for Win32 programming?

    Ok, I have what I would consider a very solid understanding of C++. I'm currently majoring in Computer Science. I went ahead and started reading Winprog tutorial for win32 programming and it makes complete sence. However, I'm curious as to whether or not their's anything else in C++ that I need to know.

    This doesn't seem to clear, let me ask it this way.

    I've taken all the clases offered at my college for C++, as well, I have don't quite a bit of side programming. However, I have no idea how to create any colsoul aplications that involve graphics. Meaning any sort of user environment instead of scrolling test. Am I missing something? If so where should I look?
    This space for Rent.

  2. #2
    Just one more wrong move. -KEN-'s Avatar
    Join Date
    Aug 2001
    Posts
    3,227
    Just get the win32 bible, Charles Petzold's "Programming Windows" (5th ed.)

  3. #3
    It's full of stars adrianxw's Avatar
    Join Date
    Aug 2001
    Posts
    4,829
    >>> I have no idea how to create any colsoul aplications that involve graphics.

    Console apps do not use graphics. Windows apps do. There is a big difference between a console app and a Windows app.

    Compile this, it is just about as basic a Windows program as you'll find.
    Wave upon wave of demented avengers march cheerfully out of obscurity unto the dream.

  4. #4
    pronounced 'fib' FillYourBrain's Avatar
    Join Date
    Aug 2002
    Posts
    2,297
    I can only assume he was talking about graphics in DOS. No mattter, that's hardly a prerequisite for windows programming! It can't hurt to give it a shot. If you like what you read in those tutorials I would say that you probably have the right kind of brain for it.


    oh and the most simple windows program that I can think of is even easier than yours adrianxw
    Code:
    #include <windows.h>
    int PASCAL WinMain(HANDLE hInstance,
                       HANDLE hPrevInstance,
                       LPSTR lpszCmdLine,
                       int nCmdShow)
         {
         MessageBox(NULL,"Hello World!","Even Simpler",MB_OK);
         return 0;
         }
    "You are stupid! You are stupid! Oh, and don't forget, you are STUPID!" - Dexter

  5. #5
    Registered User juschillin's Avatar
    Join Date
    Sep 2002
    Posts
    20
    http://www.winprog.org/tutorial/

    this is a great link!

    You are never to soon to begin learning something new!

    This will take you step by step with the first couple of tutorials. After that forget it! look for another site.

    Also I'd advise visual c++!

    there are illegal ways of getting it but I do not endorse it! Kazaa for one But you didn't hear that from me
    !Carpe Diem!
    "Sieze the Day"

  6. #6
    Registered User
    Join Date
    Aug 2002
    Posts
    23
    I"m currently using the winprog tutorial and I do have Visual Studio Professional Edition...When you have a friend that worked for microsoft you get tons of free stuff...
    This space for Rent.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Getting ready for programming
    By alyeska in forum C++ Programming
    Replies: 13
    Last Post: 09-17-2007, 07:03 AM
  2. continuing program until ready to stop
    By jlmac2001 in forum C++ Programming
    Replies: 2
    Last Post: 01-19-2003, 07:19 PM
  3. Am i ready for openGL???
    By tetra in forum Game Programming
    Replies: 9
    Last Post: 01-14-2003, 05:19 AM
  4. trim string function (code)
    By ipe in forum C Programming
    Replies: 9
    Last Post: 01-06-2003, 12:28 AM
  5. Is Linux ready to enter the desktop market?
    By carrja99 in forum Tech Board
    Replies: 20
    Last Post: 11-04-2002, 01:11 AM