|
-
Nov 7th, 2000, 12:01 PM
#1
Thread Starter
New Member
Does anyone know a simple way to disable the export button on the data report? I'd like to allow users to print out the data but not to export it to a file.
-
Feb 14th, 2001, 12:17 PM
#2
New Member
Disable export button
It's is easy even if trickky
In DataReport_Initialize put this line
Me.ExportFormats.Clear
and then in DataReport_Error put
If JobType = rptAsyncExport Then
If ErrObj.ErrorNumber = rptErrExportFormatsEmpty Then
ShowError = False
End If
End If
This will make no effect on pressing export button
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|