AccessGuruCarl
Programmer
I'm stumped...
how do "hide" the open form, open another form, and still retrieve values from the hidden form.
Thanks in advance.....
AccessGuruCarl
Programmers helping programmers
you can't find a better site.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub cmdOpenForm_Click()
DoCmd.OpenForm "Employees"
With Forms!Employees
.SetFocus
End With
With Me 'This form
.Visible = False
End With
End Sub
Private Sub Form_Open(Cancel As Integer)
Me.TextBox1.Value = Forms!FirstForm.TextBox1.Value
End Sub
[blue] Me!ControlName = Forms!1stFormName!ControlName[/blue]
Act right now.. tighten your security before the user rename any more controls and objects and make you....AccessGuruCarl said:another user renamed some of the 'Controls' without telling anyone?
If necessary, you can redesign the DB just like it was. [purple]You can't redesign lost data![/purple] Believe me, if this ever happens (I've been in court twice in the past for just this problem), [purple]everyone in every group will be pissed and looking for you![/purple][blue]Sounds like a great idea, only their is 3 different groups(depts) working on this program.[/blue]