Search:

Type: Posts; User: chris95219

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    39,155

    The proper way to use GetAsyncKeyState is to...

    The proper way to use GetAsyncKeyState is to BitAND the return value with 0x8000.



    if (GetAsyncKeyState(VK_SHIFT) & 0x8000)
    {
    // The key is currently down
    }
  2. Replies
    2
    Views
    44,810

    You use the TextBox control. It has a "MultiLine"...

    You use the TextBox control. It has a "MultiLine" property that you can set to true for multiple lines.
Results 1 to 2 of 3