DeSwa Posted March 8, 2009 Posted March 8, 2009 how i can provide listview scroll down to the automatic?
Moderators Melba23 Posted March 8, 2009 Moderators Posted March 8, 2009 DeSwa,If you mean: How can I ensure that a particular item in the ListView is visible, then you need to look at _GUICtrlListView_EnsureVisible in the Help file.If not: Can you please explain a little more...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
DeSwa Posted March 8, 2009 Author Posted March 8, 2009 when i add the item i want the scroll move the down automatically
Moderators Melba23 Posted March 8, 2009 Moderators Posted March 8, 2009 DeSwa,Then you need to use _GUICtrlListView_EnsureVisible with the index of the new item.M23 xSunLighTx3 and Marcelos 2 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
DeSwa Posted March 9, 2009 Author Posted March 9, 2009 (edited) done. thx 4 anyway.$ListView1 = GUICtrlCreateListView("Calculator Messages :", 2, 556, 354, 62)GUICtrlSendMsg(-1, 0x101E, 0, 330)gounder()Func gounder()$i = _GUICtrlListView_GetItemCount($ListView1) _GUICtrlListView_ScrollItem($ListView1, $i)EndFuncFunc _GUICtrlListView_ScrollItem($ListView1, $iItemIndex=-1, $fPartialOK = True, $iIncrement = 16) Local $iSuccess1, $iSuccess2 If $iItemIndex = -1 Then $iItemIndex = _GUICtrlListView_GetItemCount($ListView1)-1 $iSuccess1 = _GUICtrlListView_Scroll($ListView1, 0, $iIncrement) $iSuccess2 = _GUICtrlListView_EnsureVisible($ListView1, $iItemIndex, $fPartialOK) Return $iSuccess1 And $iSuccess2EndFunc Edited March 9, 2009 by DeSwa
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now