Link to home
Start Free TrialLog in
Avatar of awilson1199
awilson1199

asked on

Change field value programatically

I am in Access 2000 and have developed an application with a form where the user looks up a record.

I want a button on the form to change the value of one of the fields on the form (the field has a table datasource) that puts that changed value into the table.

How can I do this?
Avatar of Gudare
Gudare

From what I understand of your question, if you go to the on_click event of the button and select the builder-code builder, the following pseudocode should work:

me.textboxonform = me.othertextbox

Please give more details to your exact request for a clearer answer. :)

-Craig
supporting Gudare ...
Avatar of awilson1199

ASKER

Haven't tried it yet, it is at work. I want the user to click a button and that will insert a "V" in a bound text box on the form which changes the data in the field from a "C" to a "V"
ASKER CERTIFIED SOLUTION
Avatar of PhilipE
PhilipE

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You are right, that was too easy. I never considered something that simple, you should have seen some of the things I tried.

Thanks!