View Full Version : Creating A Report Control


sxchopr
08-20-2003, 08:29 AM
Hi Everyone,

is it possible to create a new report control specifically a Label, using the no data property on the report? I want to create a generic code which puts a label in a report which has no data. The message I'm getting is that the report needs to be in design view to create a report control. Any help would be appreciated.


Sandman:confused:

Peter D
08-20-2003, 09:10 AM
It's true. The report has to be in design mode in order to add a control to it.

You could have an invisible control ("No data" label) that you make visible at some point. Don't know if this is what you are after.

Hope this helps,

sxchopr
08-20-2003, 10:30 AM
Thanks Peter, but I was after creating a generic code, which I could just call from the report without having to do anything else.

Sandman