combobox dropdown behavior

  • Thread starter Thread starter Fritz Zimmerman
  • Start date Start date
F

Fritz Zimmerman

Hello All,

I have a combobox (several actually) with which I'm having behavioral
problems.

I want the combobox to drop down when someone tabs to the control, I've
added
'Me.cmbServiceType.DroppedDown = True' to the enter event.
This works fine.

The problem comes when a user 'clicks' on the combobox. The box drops then
goes back up. I can't seem to stop this behavior no matter what I try.

Anyone have any ideas?

Thanks,

Fritz
 
I heard there is a ComboBox 'Behavioural' correction facility in Redmond,
its called the development team of microsoft.

This behavious is normal, because it isa response to a user selecting from
the combobox. You could try using the selectedIndexChanged event to make the
DropDown=true

--
OHM ( Terry Burns ) * Use the following to email me *

Dim ch() As Char = "ufssz/cvsotAhsfbuTpmvujpotXjui/OFU".ToCharArray()
For i As Int32 = 0 To ch.Length - 1
ch(i) = Convert.ToChar(Convert.ToInt16(ch(i)) - 1)
Next
Process.Start("mailto:" & New String(ch))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top