Hi There Mike !
Could you please tell me how I can make the UltraCombo open and/or scroll through the values using the *keyboard* when the UltraCombo is embedded inside the UltraGrid ?
It's working fine to use the mouse to make the UltraCombo values dropDown ... but how can I scroll through it using the keyboard ?
I've tried setting the UltraCombo in the UltraGrid as the ValueList and EditorControl, and all the values appear correctly and everything ... but how can I use the UltraCombo with the KEYBOARD ?
Thanx in advance,EE
Hi EE,
You don't have to do anything special, keyboard support is automatic.
I beleive you can open the dropdown using ALT+Down or F4. Then you can use the arrow keys to scroll through the list and press Enter when you find the item you want.
I should note that I'm implementing this ... but that should not interfear with this ?
private void _ugTab3ProjectSettings_KeyPress(object sender, KeyPressEventArgs e) { // r is both ENTER keys if (e.KeyChar == '\r') { _ucTab3ProjectPhaseEditable.Focus(); _btnTab3SaveProject.BackColor = Color.Yellow; } }
Hi Mike,
Ok ... I see that F4 works, but not Alt + Down ...
But when I press F4, I cannot scroll through the DropDown with arrow-up / arrow-down ...
Why is that ? I need to be able to scroll through the values with arrow-up / arrow-down
rgd,
EE.