This worked! Thank you!
Dim x As MSForms.Frame
Set x = Me.Frame4.Object
MsgBox x.Controls("textbox1").Val
Main Topics
Browse All TopicsPlease provide a VBA example of how to access and set the value of a textbox placed on an MS Forms 2.0 Frame Control within an MS Access form.
In Excel the following code displays the value of textbox1:
MsgBox Frame1.Controls("textbox1"
On an Access form, this does not work
In addition:
Frame1.Controls.Count = 0
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: LSMConsultingPosted on 2009-05-19 at 18:52:30ID: 24428054
You generally must reference the Object property of the control. Many find it easier to set the control to a variable, so you can use Intellisense:
Dim ctl As forms.Frame
Set ctl = Me.YourFrameControl.Object
ctl.Controls("textbox1")
I'm not sure about the "forms.frame" ... I don't use the 2.0 controls due to the instability they seem to always produce, but I'm sure you can locate the correct library.
Note you do NOT reference the .Text property of Access textboxes unless those controls have the focus. This is unlike VB, where you must reference the .Text properly.