Alternative for _setcursortype(_NOCURSOR);
Hello folks!
i am using DEV C++ to code
now i am working at a game in console
and i have a problem with the _setcursortype(_NOCURSOR); function
i set it but the cursor is still like _NORMALCURSOR
in Turbo C works perfectly in DEV not (
i tried to set like this _setcursortype(0); also don't have effect
i am just wondering if there is another alternative way to remove cursor from console?
my game looks very bad with the cursor active
pls help
thx in advance
11 Months Ago
Last Updated
Related Article: String Function
is a C discussion thread by pkrai that has 1 reply and was last updated 1 year ago.
thendrluca
Newbie Poster
20 posts since Oct 2011
Reputation Points: 10
Solved Threads: 2
Skill Endorsements: 0
Sokurenko
Junior Poster
111 posts since May 2012
Reputation Points: 42
Solved Threads: 13
Skill Endorsements: 0
Question Answered as of 11 Months Ago by
Sokurenko Alternative for _setcursortype(_NOCURSOR);
void ShowCursor(bool show) {
HANDLE hConsoleOutput;
CONSOLE_CURSOR_INFO structCursorInfo;
hConsoleOutput = GetStdHandle( STD_OUTPUT_HANDLE );
GetConsoleCursorInfo( hConsoleOutput, &structCursorInfo );
structCursorInfo.bVisible = show;
SetConsoleCursorInfo( hConsoleOutput,
&structCursorInfo );
}
in program tu use like this
ShowCursor(false);
My question, my answer..very active users )
thendrluca
Newbie Poster
20 posts since Oct 2011
Reputation Points: 10
Solved Threads: 2
Skill Endorsements: 0