Results 1 to 7 of 7
  1. #1
    Join Date
    Jul 2010
    Location
    Fire Island Pines, NY
    Posts
    513

    spellcheck needs to check more than text boxes and memos

    so... we just recently realized that spellcheck doesn't check everything...
    in particular, it doesn't check Comboboxes... this is a real big problem for my end users... (real big)

    is this correct?

    is there a work around?


    many thanks in advance,


    Mark

  2. #2
    rpeare is offline VIP
    Windows XP Access 2003
    Join Date
    Jul 2011
    Posts
    5,442
    If you are giving your users an open ended method to type in text you're never going to get good data. So my first suggestion is that you create a method to have a table that supports each of your combo boxes or one table that supports them all (depending on what type of things you want in them and what they mean). That way, when they select something it's from a list that can not be altered unless they specifically add an item, and after that everyone will see the exact same description:

    for instance let's say you're choosing a car type, instead of storing Toyota, Toyta, Toota, etc which are (I assume) allowed in your current situation your table would hold a value of 1 for a 'car type' table like this:

    Code:
    tblCarType
    CarID   CarName
    1      Toyota
    2      Chrysler
    3      Foord
    Then if someone misspells a world (foord) you can correct it on the table with the misspelling one time and it will be fixed on all your records.

    The only real (relatively easy) way to do a spell check on a combo box would be to do something like copy the text value of the combo box to a text field then perform the spell check which is a bit convoluted. Combo boxes aren't meant to be free-form type-in response fields. They're really mean to be a limited, uniform, list of possible responses.

  3. #3
    Join Date
    Jul 2010
    Location
    Fire Island Pines, NY
    Posts
    513
    unfortunately, our combo boxes are used as templates for text editing... limiting the entries would not be acceptable

    ex: the end-user picks their basic text from choices offered in the combo; and then either leaves it as it is, or edits it for the specific project (with the list of potential edits being endless) -the probability of either is 50/50%. also, some of our combos are self populating (based on previous entries in the specific job the user is working on...) so an error once, could populate to many -simply by having been choosen from the combo.

    our basic data entry does not typically result in a table, it is more likely to be returned as a sort of formatted text document.

    (between a rock and a hard place)

  4. #4
    rpeare is offline VIP
    Windows XP Access 2003
    Join Date
    Jul 2011
    Posts
    5,442
    How long can the final string be? if it's memo length (more than 255 characters) you might be able to create your entire text and append it to a temporary table with a memo field, do the spell checking on the memo field and return the results. If you just want to check the spelling on the values in your text boxes you can append them to a text field and do a spell check on the combo box contents only. But there's no easy way to spell check combo boxes that I know of

  5. #5
    orange's Avatar
    orange is offline Moderator
    Windows XP Access 2003
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,848

  6. #6
    Join Date
    Jul 2010
    Location
    Fire Island Pines, NY
    Posts
    513
    hmpft

    the entry could be brief 20 characters +/- or longer upto 255 characters... but never longer

  7. #7
    rpeare is offline VIP
    Windows XP Access 2003
    Join Date
    Jul 2011
    Posts
    5,442
    ComboBoxSpellCheck.zip

    Like I said, copy contents of the combo box to a text file, call the spell check, replace the original text, move on to next combo box.

    See example included

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

Similar Threads

  1. Replies: 9
    Last Post: 06-04-2014, 10:45 AM
  2. Text/Combo boxes and Check box PLEASE help!!!!
    By PAS123 in forum Programming
    Replies: 4
    Last Post: 12-15-2011, 01:17 PM
  3. Replies: 3
    Last Post: 11-03-2010, 09:53 AM
  4. Check Boxes
    By jordanturner in forum Access
    Replies: 1
    Last Post: 10-01-2010, 09:29 AM
  5. To check or Un-Check all Boxes in a form
    By devcon in forum Forms
    Replies: 7
    Last Post: 05-01-2010, 12:03 AM

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