Hello.
I have MS Access report created with one unbound field which
Source data = [tts]
Then I create next VBA code in that Report module:
**************************************
Option Compare Database
Public tts
Private Sub Report_Open(Cancel As Integer)
tts = 20
End Sub
**************************************
It works well on Access2000
It doesn't work on Access 2003
What's wrong?
Thank you
I have MS Access report created with one unbound field which
Source data = [tts]
Then I create next VBA code in that Report module:
**************************************
Option Compare Database
Public tts
Private Sub Report_Open(Cancel As Integer)
tts = 20
End Sub
**************************************
It works well on Access2000
It doesn't work on Access 2003
What's wrong?
Thank you