View Single Post
  #2  
Old May 14th, 2010, 10:02 PM posted to microsoft.public.access.forms
Linq Adams via AccessMonster.com
external usenet poster
 
Posts: 1,474
Default enable/disable text box based on 3 combos

Text is a Reserved Word in Access and is, in fact, the name of a textbox
property, and

Me.Text.Enabled = True

may confusing the Access gnomes! I'd modify the name of the textbox.

Also, your code for thee third combobox is

If Me.Combo3 = "NO" Then
Me.Text = True

and I expect you mean it to be like the rest

If Me.Combo3 = "NO" Then
Me.Text.Enabled = True

--
There's ALWAYS more than one way to skin a cat!

Answers/posts based on Access 2000/2003

Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...forms/201005/1