questions with Forms

  • Thread starter Thread starter JP Martinez
  • Start date Start date
J

JP Martinez

How can I make it so that when in a form listing several records - I click
on a button on the left side and this changes the string information on a
text box in the corresponding item. Like for instance the textbox reads
UNPAID and I want it to be changed to PAID.

Any help will be appreciated

thanks

-Pierre
 
In the button's Click event, put code like:

Me.txtStatus = "PAID"

Replace txtStatus with whatever the actual text box is named.
 
Back
Top