I have a form that contains a combo box. the control source of this combo box is a query of companies, and when you choose one it takes you to that record for the form. yada yada, easy peasy. the problem is that one of the companies (so far) contains an apostrophe, so in the after_update code (which was simply created by the wizard) for the combo box the line:
rs.FindFirst "[companyname] = '" & Me![Combo47] & "'"
fails. What's the best way to get around this?