-----Original Message-----
Thanks Fred, this is the code as you suggested, but it did
not work. Is there something wrong with it?
Private Sub Amt_Req_AfterUpdate()
Me![Amt10].Visible = Me![Amt Req] > 1000
End Sub
-----Original Message-----
On Mon, 7 Jun 2004 12:32:19 -0700, Dorothy wrote:
In a form I have a field "AmountRequested" and a text
box
that displays the AmountRequested minus 10%. I would
like
this text box to appear only if the AmountRequested is
$1000. Do I need code in the On Enter, On Exit... How
do
I go about doing this?
Code the [AmountRequested] control's AfterUpdate event:
Me![OtherControlName].Visible = Me![AmountRequested] 1000
--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
.
Questons...
1) Is this done on a Single View form (can do) or on a Continuous Form
(can not do)?
2) Is the [AmountRequested] field the field which is getting the 1000
data entered into by a user? If so, it should work.
If not, then the AfterUpdate event doesn't fire and it won't work.
Place the code in whichever control the 1000 is being entered into, as
long as the form is NOT a continuous view form.
--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
.
Fred, I did get this to work. Now one more question.