Link to home
Start Free TrialLog in
Avatar of Elroy Taulton
Elroy TaultonFlag for United States of America

asked on

Update Access field from a button on a second form

I have two forms.  In one form, I am pulling Full names and users names.  The other form is used for data entry.  I want to see if I can (after data is retrieved on form 1) add a button on form one that will take the username and populate it in one of the text fields on form 2.  

Trying to make this easy for my end users.

As a note, both of my tables are ODBC SQL tables.  This should not matter but wanted to be sure it was stated.
Avatar of DcpKing
DcpKing
Flag of United States of America image

Open the second form and then tell it to requery with the user name.  Something like this
docmd.openForm B
form_B.filter="UserName='" & me.txtUserName & "'" '

You could also have a method on form B that sets it to show the details for a particular user that it gets from a parameter, and invoke that method with the selected username from the code in the button on Form A. IMHO that's the cleanest, best, and most elegant technique.
Avatar of Elroy Taulton

ASKER

The original form would already be open.  It is an entry form, however the user will have to lookup some values that they would not know.  The second form allows them to search for this info.  

Instead of me depending on them to type the data correctly, I want the button to auto-populate the field on the entry form.  Does this make sense?

Not sure your solution will work for this.
Avatar of Jeffrey Coachman
The way you phrased your question originally, DcpKing's solution should work.
Remember he stated: "Something like this"

So on the button on the "second" form, try something like this:
me.YourControl=Forms!Form1!txtUserName

Just note that you did not post any details on the design of these forms, so guesses is all we can provide...


Jeffcoachman
boag200's answer will work if your button is on your 2nd form.  I believe you mentioned that you wanted the button on form 1 so you would modify boag200's answer as follows:

Sub button1_click()
     Forms!NameOfForm1!txtUserName = me.YourControl
End sub


Or if you decide to have your form2 as a subform of form1, you would use this:

Sub button1_click()
     me.NameOfsubform.form!txtUserName = me.YourControl
End sub
IrogSinta,

LOL
Yeah, I was a bit confused to as to where this "button" was to...

No sweat here, ...if your syntax is what they wanted, I don't need any points...

;-)

Jeff
So, now I am getting an error message from the code.  I am attaching screen prints that should help.  I have two independent forms.  One is an entry and the other is used for data lookup to fill in the entry.

Following the above suggestions, I am receiving the following error: Invalid use of property.  Thoughts?

Please ask question if I am unclear.
ScreenHunter-02-Mar.-22-11.29.gif
ScreenHunter-03-Mar.-22-11.29.gif
Sorry, included another screen shot showing the above syntax.
ScreenHunter-04-Mar.-22-11.49.gif
ASKER CERTIFIED SOLUTION
Avatar of Jeffrey Coachman
Jeffrey Coachman
Flag of United States of America image

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
Right, understand.  Let me try that.  There are limitations (from an employer point of view) about what I can post and not.  Trust me, if I could I would have first thing.

So my syntax would be:

Forms!'Matrix Form Entry'!Approver1=USR_NAME

Correct?

If Matrix Form Entry = [SomeFormName] and
If Approver1=[SomeOtherControlName] and
If USR_NAME=[SomeControlOnTheCurrentForm]
Correct, but again, it is still not clear which "Direction" this is being done from, so you may have to reverse the syntax...
Worked once I used the brackets.  Guess I figured I did not need the actual brackets.
The brackets should only be needed if you have spaces in your object names...

This is why spaces in object names is frowned upon.

Try to adopt a standard Naming convention like:
http://www.xoc.net/standards/rvbanc.asp
or:
http://en.wikipedia.org/wiki/Leszynski_naming_convention

;-)

JeffCoachman