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
110
Drop down problem
posted

Hi i am using ultracombo for my application. The autocomplete works well but somehow, I need to make the combo show it's dropdown while the the user press a key which I don't know how. Can somebody tell me how to do that? Thanks.

  • 469350
    Verified Answer
    Offline posted

    You can use the PerformAction method to simulate any user-interaction with the control. So you can do something like this:

     this.ultraCombo1.PerformAction(UltraComboAction.Dropdown); 

    I'm pretty sure the control will not drop down unless it has focus, though, so you probably need to set focus to it first.