PDA

View Full Version : Setting combo box properties



mud2
05-20-2005, 10:26 AM
In setting a combo box'e properties
With Combox
.RowSourceType = "Table/Query
.ColumnCount = "2"
.ColumnHeads = "Yes" (Or "No" or yes or no) Does not work!
End With

Must use
.ColumnHeads = True (Or False, No quotes.)

xCav8r
05-20-2005, 03:22 PM
Yes, you're right. That's what the documentation says too. And, when you type .ColumnHeads= it pops up your options of true and false as it does for other boolean properties. :thumb