R
rmellison
How do you edit the font size etc in a combo box form?
Mark Hone said:Hi,
To populate a controls combo box from a range of cells, do the following:
- Make sure you are in design mode (on the VB toolbar)
- Select your combo box, right-click and select Properties...
- Under the ListFillRange proprty, type in the cell range (unfortunately you
can't just point and click as you can with the forms combo box).
There is also a LinkedCell property, which works in the same way if you want
to retrieve the selected value into a cell somewhere.
Data Validation can be used to present a drop-down list to the user in much
the same way as a combo box control.
To get up to speed on data validation, I (like Dave) would also recommend
Debra Dalgleish's web-site. Try starting here:
http://www.contextures.com/xlDataVal01.html
Hope this helps,
Mark