Consulting

Results 1 to 2 of 2

Thread: Setting combo box properties

  1. #1
    VBAX Tutor
    Joined
    Mar 2005
    Posts
    204
    Location

    Setting combo box properties

    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.)
    Last edited by mud2; 05-20-2005 at 10:32 AM. Reason: add more information

  2. #2
    VBAX Expert xCav8r's Avatar
    Joined
    May 2005
    Location
    Minneapolis, MN, USA
    Posts
    912
    Location
    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •