http://bugs.winehq.com/show_bug.cgi?id=927
------- Additional Comments From z_god@wanadoo.nl 2003-21-06 06:35 ------- Bug comments restored from Gmane.org:
Results when running Kenwood executable.
------- Additional Comments From tony_lambregts <at> telusplanet.net 2002-07-31 11:26 ------- This is non critical code, but probably not that bad a place to start developing wine. The following is extracted frome the current source code ./wine/dlls/comctl32/flatsb.c
/*********************************************************************** * FlatSB_SetScrollProp (COMCTL32.36) */ BOOL WINAPI FlatSB_SetScrollProp(HWND hwnd, UINT index, INT newValue, BOOL flag) { TRACE("[%04x] index=%u newValue=%d flag=%d\n", hwnd, index, newValue, flag); FIXME("stub\n"); return FALSE; }
/*********************************************************************** * From the Microsoft docs: * "If flat scroll bars haven't been initialized for the * window, the flat scroll bar APIs will defer to the corresponding * standard APIs. This allows the developer to turn flat scroll * bars on and off without having to write conditional code." * * So, if we just call the standard functions until we implement * the flat scroll bar functions, flat scroll bars will show up and * behave properly, as though they had simply not been setup to * have flat properties. * * Susan <sfarley <at> codeweavers.com> * */