Search Results

Search results 1-2 of 2.

This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

  • Automatic scrolling in a Listbox

    Diesel - - emWin related

    Post

    Thanks for the reply Florian. The sample code is definitely helpful. Thanks again.

  • Automatic scrolling in a Listbox

    Diesel - - emWin related

    Post

    Hello All, Are there any built in functions that enable automatic horizontal scrolling of a selected item in a listbox. Not a scrollbar that the user has to interact with, but a function that sees the displayed string is greater than the length of the display and starts scrolling from right to left automatically when that item is selected. Something along the lines of... item_index = listbox_GetSel(); if(LENGTH_OF(listbox_GetItemText(item_index)) > MAX_DISPLAYABLE_LENGTH_ON_THE_SCREEN) { SCROLL_…