How do you hide the cursor in dos using C/CPP also a function prototype?
This is a discussion on Cursor 2 within the A Brief History of Cprogramming.com forums, part of the Community Boards category; How do you hide the cursor in dos using C/CPP also a function prototype?...
How do you hide the cursor in dos using C/CPP also a function prototype?
Try setcursortype in conio.h
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
If at first you don't succeed, try writing your phone number on the exam paper.
I support http://www.ukip.org/ as the first necessary step to a free Europe.
What cursor? Mouse, text?
For mouse:
No spaces in int86 - board still messing up my ampersands.Code:union REGS regs; regs.ax=0x02 int86(0x33, & regs, & regs);
regs.x.ax=0x02;
I really should preview these short posts......
_setcursortype(_NOCURSOR);
It's defined in conio.h.