Well you could try something like:
set control "b" to enabled=false
after_update textbox "A"
If [field A]="32" then
[fieldb](or combobox).enabled=true
else
[fieldb](or combobox).enabled=false
end if

Signature
Maurice Ausum
> For example
> Field A = ID #'s
[quoted text clipped - 9 lines]
>
> T
T.Kay - 31 May 2007 20:57 GMT
For the example i stated it works, however:
I may be doing something wrong in visual basic, but I keep getting and error
message stating the Procedure name does not match.
I think it may be because of this:
My Field A row source is as follows:
SELECT [Table_Contribution_Type].[Cont_Type_ID],
[Table_Contribution_Type].[Cont_Type] FROM Table_Contribution_Type;
Which is making it a little more difficult.
Thank you again in advance...
> Well you could try something like:
>
[quoted text clipped - 21 lines]
> >
> > T