F
Fred
Hi,
In my report form I have a parameter [mois] that is setted when loading the
report by the user.. (its in my "local" query and also show in the form like
:
CDate("1/" & [mois] & "/" & Année(Date()))
that is the value of a text field.
What I'd like to, is to
access thisvalue through VBA...
how do I access this param ?
Because instead of having it set when loading the report, I ve done a form
where the use just select the value, click ok and then the report should
read this value when loading and use it asthe parameter...
Private Sub Report_Open(Cancel As Integer)
mois = Forms![Accueil]![val_mois]
End Sub
Thank you
In my report form I have a parameter [mois] that is setted when loading the
report by the user.. (its in my "local" query and also show in the form like
:
CDate("1/" & [mois] & "/" & Année(Date()))
that is the value of a text field.
What I'd like to, is to
access thisvalue through VBA...
how do I access this param ?
Because instead of having it set when loading the report, I ve done a form
where the use just select the value, click ok and then the report should
read this value when loading and use it asthe parameter...
Private Sub Report_Open(Cancel As Integer)
mois = Forms![Accueil]![val_mois]
End Sub
Thank you