Kuchiha 0 Posted May 9, 2010 (edited) Hi all, For a script I need a RichEdit with vertical scrollbar always visible. I checked the help file, but I've found nothing about that. At the moment I'm using this : $History = _GUICtrlRichEdit_Create($GUI, 'test', 0, 1, 375, 203, BitOr($WS_VSCROLL, $ES_READONLY, $ES_MULTILINE)) The vertical scrollbar is visible but only when the richedit is plenty of text. Hope that someone could help me. Thx Edited May 10, 2010 by Kuchiha Share this post Link to post Share on other sites
Melba23 3,489 Posted May 9, 2010 Kuchiha, That is the normal behaviour for Windows controls. Why do you want a scrollbar if there is nothing to scroll to? M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Share this post Link to post Share on other sites
Kuchiha 0 Posted May 9, 2010 Well, I'm trying to modify this chat script : http://www.autoitscript.com/forum/index.php?showtopic=112507 I want to use RichEdit in place of the GUICtrlEdit to be able to add bold, italic etc. In the initial script the scrollbar is visible even if the CtrlEdit is empty, wich is not the case of the RichEdit. Share this post Link to post Share on other sites
Melba23 3,489 Posted May 9, 2010 Kuchiha,So that Edit control had a abnormal scrollbar.I ask again:- Why do you need a scrollbar if there is nothing in the control to scroll to? As long as the scrollbar appears when you need it, what is the problem? Why is the default bahaviour unacceptable? M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Share this post Link to post Share on other sites
Kuchiha 0 Posted May 10, 2010 It's not unacceptable, it was just for visual purpose Share this post Link to post Share on other sites
DW1 102 Posted May 10, 2010 $History = _GUICtrlRichEdit_Create($GUI, 'test', 0, 1, 375, 203, BitOr($WS_VSCROLL, $ES_READONLY, $ES_MULTILINE, 8192)) AutoIt3 Online Help Share this post Link to post Share on other sites
Kuchiha 0 Posted May 10, 2010 Working very well, thx danwilli. Share this post Link to post Share on other sites