Comparing Strings from different tables

A

Airkon

I have a simple problem which I cant solve after searching for several hours
and it goes like this.

After I updated an particular data on a combobox on a form, I wish to
compare the data against a string so as to automatically check some option
buttons. So far, I have not found any syntax for comparing a value with a
string in access vb. Can anyone help me?
 
O

Ofer

Try on the after update event of the combo box to use the code

If Me.[ComboBox name] = "My String" Then
 
Top