Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1180
Implementation of different combo
posted

I was wondering if there is the possibility of implementing this that I present the images below with a combo.


Parents Reply
  • 1180
    posted in reply to Mike Saltzman

    txtNome = ultraTextEditor
    txtCentroCusto = ultraDropDownButton
    appCC = ultraPopupControlContainer
    appListaCC = ultraTree

    I put the following code in the event of txtCentroCusto ENTER:
    If appCC.IsDisplayed = False Then
           
    txtCentroCusto.DropDown ()
    End If

    Running the program have the following cases:

    1) Using the Mouse:
    ● Focusing on txtNome txtCentroCusto and going to the
    appCC is not open, or opens and closes very quickly, yet I could not fix. AND I NEED TO GET IT OPEN

    ● Focusing on txtCentroCusto and the
    appCC component not visible, I click on the txtCentroCusto and then appCC appears.

    1) Using the Keyboard:
    ● Focusing on txtNome and going to txtCentroCusto via TAB key, the
    appCC is opened automatically. No I need to hit any key.

Children