.
I create a window like this:
[CODE]
hwnd=CreateWindowEx(
WS_EX_APPWINDOW,
"MyConsole",
"Console",
WS_OVERLAPPEDWINDOW | WS_HSCROLL |WS_VSCROLL,
100,100,
500,400,
NULL,
NULL,
hinst,
NULL
);
[/CODE]
How do I show/hide Scrollbars using winapi?
Please help.
Thanks.
By the way where is win api forum?
Comments
[link=http://msdn.microsoft.com/en-us/library/aa383686(VS.85).aspx]http://msdn.microsoft.com/en-us/library/aa383686(VS.85).aspx[/link]
There is a [italic]Scroll Bar[/italic] link and there is a function you need. It surprisingly called "ShowScrollBar".
[/color]
The Windows programming board is the right place to ask WinAPI questions.
I posted. But I looked under Window functions.
Many thanks for the link.