-
1 Attachment(s)
Block User From Editing The Combo Box Text Value
-
The way you've set up your combo box, you cannot make any change to the text. So what is your question?
-
If you don't want to use code, you could change the style of the combo box from 0 - fmStyleDropDownCombo to 2 - fmStyleDropDownList
-
1 Attachment(s)
Hi,
If I open the form, and I scroll items in the list with the Up Dn when I get to the last item selected from the combobox does not have to go out and pick me the next button.
A problem common to all the combobox I've tried.
-
Quote:
does not have to go out and pick me the next button
Cannot understand this part!
-
Hi,
One step at a time.
I have attached some pictures to show the sequence that I note.
1) I open the Form
2) I flow with the keyboard entries
3) When the Combobox showed the last line is disabled by selecting the button below.
Wonder if you can get to the last line before exiting the ComboBox.
-
It took me 3 hours to understand this (I think I did). So what you're saying is that as you focus on the combo box and press the down arrow to scroll down the list of combo box items, after you reach the last entry (December in this case), and you press the down button again, the focus jumps to the next control in the tab index (the Conferma button in this case), correct?
I guess that's how all combo boxes work, and I do not understand what's the disadvantage in that. On the contrary, I find that as an advantage, instead of having to work on the tab button, or use the cursor.
-
Hi,
Quote:
I guess that's how all combo boxes work, and I do not understand what's the disadvantage in that. On the contrary, I find that as an advantage, instead of having to work on the tab button, or use the cursor.
I absolutely have to avoid that one can select the following check.
Alternatively, if you do not find a solution I'll use a ListBox, this review is limited to swipe its entirety.
Imagine a form with multiple combobox selection problem which create
-
1 Attachment(s)
Hi,
I had tried unsuccessfully with other controls
To Restrict the selection in the combobox, I added the following code:
Code:
Private Sub ComboBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If KeyCode = 40 Then
With Me.ComboBox1
If .ListIndex + 1 = .ListCount Then KeyCode = 0
End With
End If
End Sub
Here is the latest correct version