D
deb
When I open the fClosure form from a button on the f001ProjectReview form.
It opens the fClosure form but some of the comboboxs and some of the
subforms are blank. As in totally white. any ideas of why? If I open the
fClosure form without using the button on the f001ProjectReview form it
works fine.
Here is the button code I use to open form
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "fClosure"
stLinkCriteria = "[ProjectID]=" & Me![ProjectID]
DoCmd.OpenForm stDocName, , , stLinkCriteria
DoCmd.Close acForm, "f001ProjectReview"
The object is to find a project and make edits in f001ProjectReview and
click button to open a project closure form fClosure to enter closure data on
the current ProjectID.
It opens the fClosure form but some of the comboboxs and some of the
subforms are blank. As in totally white. any ideas of why? If I open the
fClosure form without using the button on the f001ProjectReview form it
works fine.
Here is the button code I use to open form
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "fClosure"
stLinkCriteria = "[ProjectID]=" & Me![ProjectID]
DoCmd.OpenForm stDocName, , , stLinkCriteria
DoCmd.Close acForm, "f001ProjectReview"
The object is to find a project and make edits in f001ProjectReview and
click button to open a project closure form fClosure to enter closure data on
the current ProjectID.