senait.kifle.127 0 Newbie Poster

Hi,
I managed to change a cursor in C++ windows console size using the function

HANDLE output = GetStdHandle(STD_OUTPUT_HANDLE);
        CONSOLE_CURSOR_INFO cz; 
        cz.dwSize =100; 
        cz.bVisible =TRUE;
        SetConsoleCursorInfo(output, &cz);

But I'm having a hard time to make the cursor not to blink. I couldn't find any function in MSDN to do that. Any suggestions?

Thanks a lot!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.