Search:

Type: Posts; User: Codah

Search: Search took 0.01 seconds.

  1. Thread: What is Swing?

    by Codah
    Replies
    1
    Views
    1,009

    Swing is the GUI API for Java. Basically, you...

    Swing is the GUI API for Java. Basically, you use Swing in Java to create GUI applications. It generally has the same idea as windows programming; you have to deal with events.

    Codah
  2. Replies
    8
    Views
    1,403

    HWND is nothing more than a long integer...

    HWND is nothing more than a long integer identifiying a window that you created. Windows will supply this for you.

    WPARAM and LPARAM are parameters part of the MSG structure



    struct typedef...
  3. Thread: Wm_paint

    by Codah
    Replies
    3
    Views
    1,053

    So you would only use WM_PAINT if you wanted to...

    So you would only use WM_PAINT if you wanted to do some specific drawing tasks? In other words, windows will always do the basic drawing job?
  4. Thread: Wm_paint

    by Codah
    Replies
    3
    Views
    1,053

    Wm_paint

    When the window is moved, resized, obstructed by another window, etc... windows will send your application a WM_PAINT message in order for you to redraw the invalid region.

    case WM_PAINT:
    {
    ...
Results 1 to 4 of 4