Default text in combobox

  • Thread starter Thread starter Kyle
  • Start date Start date
K

Kyle

I have a combobox. How do I setup this default message
"Select From List" appears on the combobox everytime a new
record is select. I tried to set the message in Default
Value but somehow not working.

Thanks.
 
Kyle said:
I have a combobox. How do I setup this default message
"Select From List" appears on the combobox everytime a new
record is select. I tried to set the message in Default
Value but somehow not working.

Place a TextBox on top of the ComboBox covering it exactly except for the
dropdown arrow.

Make it's ControlSource =Nz(ComboBoxFieldName,"Select From List")

In its GotFocus event use one line of code to change focus to the ComboBox and
then drop it down.
 
Back
Top