.
I create a window like this:
hwnd=CreateWindowEx(
WS_EX_APPWINDOW,
"MyConsole",
"Console",
WS_OVERLAPPEDWINDOW | WS_HSCROLL |WS_VSCROLL,
100,100,
500,400,
NULL,
NULL,
hinst,
NULL
);
How do I show/hide Scrollbars using winapi?
Please help.
Thanks.
By the way where is win api forum?