asp_learner
Registered User.
- Local time
- Today, 10:47
- Joined
- Jun 7, 2001
- Messages
- 46
For my report when there is no data,
i currently have the following code:
'Closes the report if there is no data
MsgBox "There are no Known Losses for the period you requested.", , "No Data"
Cancel = True
without that code I would get #error if there isno data. I came up with one solution which is to make that field invisible when there is no data.
Me![Text90].Visible = False
Now how do I set the field to say on the paper, there is no data available.
Thanks,
Eva
[This message has been edited by asp_learner (edited 06-13-2001).]
i currently have the following code:
'Closes the report if there is no data
MsgBox "There are no Known Losses for the period you requested.", , "No Data"
Cancel = True
without that code I would get #error if there isno data. I came up with one solution which is to make that field invisible when there is no data.
Me![Text90].Visible = False
Now how do I set the field to say on the paper, there is no data available.
Thanks,
Eva
[This message has been edited by asp_learner (edited 06-13-2001).]