R
rmcompute
I have a user input screen which gathers date data and runs a process. I
have another screen which gathers date data and I would like to run this same
process.
I gathered the date data from the second form, then opened the first form in
hidden mode:
DoCmd.OpenForm "frmCA_Dates", , , , , WindowMode:=acHidden
I then populated the field on the hidden screen with the data gathered from
the current screen the current screen:
[Forms]![frmCA_Dates]![txtStartDate] = Me.cboFiscalMonth
The program does not seem to read the date correctly. Is there something
that needs to be done that I am missing ?
have another screen which gathers date data and I would like to run this same
process.
I gathered the date data from the second form, then opened the first form in
hidden mode:
DoCmd.OpenForm "frmCA_Dates", , , , , WindowMode:=acHidden
I then populated the field on the hidden screen with the data gathered from
the current screen the current screen:
[Forms]![frmCA_Dates]![txtStartDate] = Me.cboFiscalMonth
The program does not seem to read the date correctly. Is there something
that needs to be done that I am missing ?