In Visual C++, I Created console using AllocConsole function. But I could not control its scroll bar using mouse wheel. Only way to control scroll bar is dragging it. It is too uncomfortable.

Is there any way to control scroll bar using mouse wheel?

link|improve this question

Does scrolling with mouse wheel work in e.g. command interpreter console window (on your machine)? – Cheers and hth. - Alf Jan 14 '11 at 3:40
This is not a C++ question. At best it's a WinAPI question. – Lightness Races in Orbit Jan 14 '11 at 4:02
Sorry @Tomalak Geret'kal. I edited tag. – codevania Jan 14 '11 at 8:48
feedback

1 Answer

up vote 1 down vote accepted

Try SetConsoleMode and disable ENABLE_MOUSE_INPUT and use ENABLE_PROCESSED_INPUT.

something like

GetConsoleMode(hConsoleHandle, &lpMode);
SetConsoleMode(hConsoleHandle, lpMode & ~ENABLE_MOUSE_INPUT | ENABLE_PROCESSED_INPUT);
link|improve this answer
Thanks @SDiZ~. It works well~!! :) – codevania Jan 14 '11 at 8:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.