Using BeforeUpdate

  • Thread starter Thread starter Gary Schuldt
  • Start date Start date
G

Gary Schuldt

After the user has filled in txtCtlB, I want to concatenate the contents of
txtCtlA to the end of htmlCtlB (I'm constructing a full UNC).

Which event should I use for the code? I'm thinking the BeforeUpdate for
htmlCtlB but am concerned about possible recurrence of the same event after
the handler finishes its job.

I'd appreciate any light you can shine on the subject.

Thanks.

Gary
 
Yes, it makes sense to use the control's AfterUpdate event for exactly the
reason you gave.
 
Back
Top