Thread: input without cursor

  1. #1
    Registered User
    Join Date
    Sep 2001
    Posts
    305

    input without cursor

    is there a way to get nput without a cursor, like in a game?

  2. #2
    Code Warrior
    Join Date
    Nov 2001
    Posts
    669
    Explain yourself a little bit.
    Current projects:
    1) User Interface Development Kit (C++)
    2) HTML SDK (C++)
    3) Classes (C++)
    4) INI Editor (Delphi)

  3. #3
    Hamster without a wheel iain's Avatar
    Join Date
    Aug 2001
    Posts
    1,385
    i guess you mean disable the cursor
    under windows this is relativly simple

    #include <windows.h>

    _SETCURSORTYPE(_NOCURSOR);

    check your help file for actual capitalization but its the right function name and right parameter
    Monday - what a way to spend a seventh of your life

  4. #4
    Registered User
    Join Date
    Sep 2001
    Posts
    305
    a, thas what i needed, thanks.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. I would love some input on my BST tree.
    By StevenGarcia in forum C++ Programming
    Replies: 4
    Last Post: 01-15-2007, 01:22 AM
  2. About aes
    By gumit in forum C Programming
    Replies: 13
    Last Post: 10-24-2006, 03:42 PM
  3. Structure and Linked List User Input Question
    By kevndale79 in forum C Programming
    Replies: 16
    Last Post: 10-05-2006, 11:09 AM
  4. need help with some input
    By blindleaf in forum C Programming
    Replies: 2
    Last Post: 03-16-2003, 01:50 PM