Results 1 to 12 of 12
  1. #1
    djclinton15 is offline Competent Performer
    Windows 8 Access 2013
    Join Date
    Nov 2015
    Posts
    123

    Combo Boxes won't auto-full...?

    I hope that my thread makes some sense to someone. When I used Forms with Combo Boxes as I started typing an item it would automatically come up/fill-in. I had to recreate a similar Form with similar Combo Box, but now when I start to type/input an item I need to type in the full item name. I have abbreviations for all of my items which is hard to remember -- can cause errors. I'll try to give an example:




    I want to type in, "FTWDMC." I use to just start to type in, "FT" & then the rest would appear/auto-full (as a suggestion). Except, on my new recreated Form it's not working as such. Is there some trick/setting that I'm missing? I would hope not to need to recreate another Form, but...


    Any suggestions will be greatly appreciated. Thanks in advance!

  2. #2
    Bob Fitz's Avatar
    Bob Fitz is offline Access Developer
    Windows 7 32bit Access 2013
    Join Date
    May 2011
    Location
    Essex UK
    Posts
    3,614
    What is the Row Source property of each combo box.
    If this helped, please click the star at the bottom left of this posting and add to my reputation . Many thanks.
    Bob Fitzpatrick

  3. #3
    djclinton15 is offline Competent Performer
    Windows 8 Access 2013
    Join Date
    Nov 2015
    Posts
    123
    Thanks for responding to my thread. The Row Source Property is from a query I specifically created for this Combo Box, but I don't know if that's what you're requesting? The Row Source Table is, Table/Query; I think that's correct.

  4. #4
    ssanfu is offline Master of Nothing
    Windows XP Access 2010 32bit
    Join Date
    Sep 2010
    Location
    Anchorage, Alaska, USA
    Posts
    9,664
    I always set these properties for combo boxes (at a minimum):
    Property data tab-
    Limit to List - Yes
    Allow value list edits - No
    Autoexpand - YES

    Click in the Autoexpand property, then press the F1 key for more info.

  5. #5
    djclinton15 is offline Competent Performer
    Windows 8 Access 2013
    Join Date
    Nov 2015
    Posts
    123
    Thanks, but no luck.

  6. #6
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,771
    Provide the SQL statement of the query used as RowSource.

    If you want to provide db for analysis, follow instructions at bottom of my post.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  7. #7
    djclinton15 is offline Competent Performer
    Windows 8 Access 2013
    Join Date
    Nov 2015
    Posts
    123
    Hi June, I'm djclnt, but have been away (nursing home) so unlikely you'll remember me.

    SELECT Music_Entriesqry.*, Music_Entriesqry.MLDate
    FROM Music_Entriesqry
    WHERE (((Format$([Music_Entriesqry].[MLDate],"Short Date")) Like "*2015"))
    ORDER BY Music_Entriesqry.MLDate, Music_Entriesqry.mlgID;

    * the db is just too large to send even in WinZip

  8. #8
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,771
    So what is in the combobox RowSource property - query name or this SQL statement?

    Why are you using * to pull every field?

    What order are the fields in?

    What are settings of other properties of combobox:

    ControlSource (is this UNBOUND?)
    BoundColumn
    ColumnCount
    ColumnWidths
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  9. #9
    ssanfu is offline Master of Nothing
    Windows XP Access 2010 32bit
    Join Date
    Sep 2010
    Location
    Anchorage, Alaska, USA
    Posts
    9,664
    Hi djclnt, I do remember you. Good to see you back.

    I also wonder about the number of fields - how many fields are in the query Music_Entriesqry ?

    Also, why are you converting a date to a string to do the filtering?
    If "MLDate" is a date/time type, you might try
    Code:
    SELECT Music_Entriesqry.*, Music_Entriesqry.MLDate
    FROM Music_Entriesqry
    WHERE Year([Music_Entriesqry].[MLDate]) = 2015
    ORDER BY Music_Entriesqry.MLDate, Music_Entriesqry.mlgID;

  10. #10
    djclinton15 is offline Competent Performer
    Windows 8 Access 2013
    Join Date
    Nov 2015
    Posts
    123
    June, I was able to attached the db. The Form which I'm speaking of ought to open automatically. If not, it's named, 2015_Music_Entries
    Attached Files Attached Files

  11. #11
    djclinton15 is offline Competent Performer
    Windows 8 Access 2013
    Join Date
    Nov 2015
    Posts
    123
    I got it guys, thanks to all!

  12. #12
    ssanfu is offline Master of Nothing
    Windows XP Access 2010 32bit
    Join Date
    Sep 2010
    Location
    Anchorage, Alaska, USA
    Posts
    9,664
    Did a lot of searching and found that the first displayed field will (should) autoexpand.
    Just change the order of the first two fields in the combo box query; ArtistID should be the first field.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Text boxes auto fill after combo box update
    By royalbridge in forum Access
    Replies: 11
    Last Post: 07-13-2015, 11:56 AM
  2. Replies: 2
    Last Post: 08-05-2014, 04:07 PM
  3. Replies: 9
    Last Post: 04-01-2014, 04:29 PM
  4. Replies: 3
    Last Post: 06-09-2013, 05:35 PM
  5. Replies: 5
    Last Post: 03-07-2012, 12:57 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums