Hi,
Is there a way to modify the properties of the ActiveX viewer in BOE XI R2?
I would like to prevent the Group Tree ( or allow it) , as well as control some of the other attributes ( like the Refresh, export or print buttons) like can be done with the 'standard' viewers :
Is there anyway to do this with ActiveX?
Thanks..
To Paraphrase:"The Help you get is proportional to the Help you give.."
Is there a way to modify the properties of the ActiveX viewer in BOE XI R2?
I would like to prevent the Group Tree ( or allow it) , as well as control some of the other attributes ( like the Refresh, export or print buttons) like can be done with the 'standard' viewers :
Code:
Set Viewer = CreateObject("CrystalReports.CrystalReportInteractiveViewer")
With Viewer
.reportSource = reportDocument
.HasBooleanSearchButton = False
.HasCrystalLogo = False
If NbrParams > 0 then
.ParameterFields = Fields
End If
.HasRefreshButton = True
.IsDisplayGroupTree = False
.HasPrintButton = true
.PrintMode = 0 ' disable activeX Printing - set to 1 to enable (may require plug-in is set to 1)
.IsOwnPage = true
End With
Is there anyway to do this with ActiveX?
Thanks..
To Paraphrase:"The Help you get is proportional to the Help you give.."