Percius 0 Posted October 23, 2004 (edited) I have my other post which seems to be stumping or irritating people so I was just wondering What Style options are required to make a working Window scroll bar? As I seem to be unable to make one. Edited October 23, 2004 by Percius Share this post Link to post Share on other sites
Jos 2,170 Posted October 23, 2004 I have my other post which seems to be stumping or irritating people so I was just wondering What Style options are required to make a working Window scroll bar? As I seem to be unable to make one.<{POST_SNAPBACK}>Don't think you need to start a new thread... The folks with detailed knowlegde on the GUI stuff will see it and get back to you... Just my guess at this moment and didn't look at the AutoIt3 source yet but it could be that the Window Scrolling message event is not implemented. The WS_VSCROLL is normally used for controls like listbox and Edit...For testing i added 2 lines to the loop to see what's reported back by GUIGetMsg():While 1 $msg = GUIGetMsg() If $msg <> 0 then _ MsgBox(4096,'debug:' , '$msg:' & $msg);### Debug MSGBOX Select Case $msg = $next ExitLoop EndSelect Wend SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Share this post Link to post Share on other sites
Percius 0 Posted October 23, 2004 Thanks At least now I know why it dosnt work. The Scroll Bar does not send a msg. Share this post Link to post Share on other sites