I am trying to keep open several different forms at the same time. Yet in using acDialog I am no able to access more then the last form opened. I need to be able to access more then one form and keep the code form moving on. Below is the code used to open the two forms. With the second form allowing me to access the remaining forms but all the data shows up behind the first. Any ideas ? ? ?
*****Form 1
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmJob_section"
stLinkCriteria = "[quote_id]=" & [New_quote_id]
DoCmd.OpenForm stDocName, , , stLinkCriteria, , acDialog
*****Form2
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmOutScopeofWork"
DoCmd.OpenForm stDocName, , , stLinkCriteria
I am sure is has something to do with acDialog, but I do not know what other options I have.
Thanks
*****Form 1
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmJob_section"
stLinkCriteria = "[quote_id]=" & [New_quote_id]
DoCmd.OpenForm stDocName, , , stLinkCriteria, , acDialog
*****Form2
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmOutScopeofWork"
DoCmd.OpenForm stDocName, , , stLinkCriteria
I am sure is has something to do with acDialog, but I do not know what other options I have.
Thanks