Thread: order of operations when programming in API

  1. #1
    Registered User
    Join Date
    Nov 2002
    Posts
    157

    order of operations when programming in API

    when you write a WinAPI program, in what order do you program? i'm about to program a big program and i'm just curious how you guys go about it.

    do you do all of the "cosmetics" first? i mean by that controls and everything placed out. and then the functionality programming? or do you finish each step and then work on to another "control" or functional part of the program?

    this isn't the first winapi program of mine, but i'm just curious as to what everybody does when programming a large program in api.

    stallion

  2. #2
    Registered User
    Join Date
    Nov 2001
    Posts
    1,348
    There are different design patterns. In general, you should have the core program design before you begin coding them and connecting them to the controls. One example of a core program is inheritance, polymorphism, and abstract patterns. In other words, you should have them all finished before adding controls functionality.

    In summation, experience will guide you.

    Kuphryn

  3. #3
    Registered User
    Join Date
    Nov 2002
    Posts
    157
    okay, thanks for the advice. in my last experience, i did it opposite. i laid everythign out and then programmed functionality. i guess that was a bad idea. i'll try what you suggest. thanks again!

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Best way to have an list of indices which changes order
    By laertius in forum C Programming
    Replies: 5
    Last Post: 09-29-2008, 12:45 AM
  2. Embedded SQL Order By
    By cjohnman in forum C Programming
    Replies: 12
    Last Post: 04-15-2008, 03:45 PM
  3. OLE Clipboard :: Win32 API vs. MFC
    By kuphryn in forum Windows Programming
    Replies: 3
    Last Post: 08-11-2002, 05:57 PM
  4. Thread Synchronization :: Win32 API vs. MFC
    By kuphryn in forum Windows Programming
    Replies: 2
    Last Post: 08-09-2002, 09:09 AM
  5. Is it foolish to program with Win32 API ?
    By Kelvin in forum Windows Programming
    Replies: 2
    Last Post: 07-09-2002, 02:03 PM