cancel
Showing results for 
Search instead for 
Did you mean: 

Logo of the CrystalReportViewer DisplayToolbar

Former Member
0 Kudos

I'm developing an Windows application.

Using the following tools.

1.Visual Studio 2005

2.Crystal Reports 2008 SP3

When using the CrystalReportViewer,can I delete a "CrystalReports2008" Logo on the DisplayToolbar?

Accepted Solutions (1)

Accepted Solutions (1)

former_member183750
Active Contributor
0 Kudos

See the KB [1539284 - How to disable or hide CrystalLogo from the viewer control in a windows application|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333533333339333233383334%7D.do]

Ludek

Follow us on Twitter http://twitter.com/SAPCRNetSup

Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

Former Member
0 Kudos

Thank you for the reply.

In The Crystal Reports 2008 SP3 , it was changed order in control array.

// Your following(SP2)

ToolStrip CLogo = (ToolStrip)crystalReportViewer1.Controls[3];

CLogo.Items[CLogo.Items.Count - 1].Visible = false;

// In SP3

ToolStrip CLogo = (ToolStrip)crystalReportViewer1.Controls[4];

CLogo.Items[CLogo.Items.Count - 1].Visible = false;

Your resolution means to depend the particular version.

Regardless of the version to get?

former_member183750
Active Contributor
0 Kudos

Don't think there is any other way so you'll either have to assume the version or determine what is there already. If you install your app with the latest CR runtime, that should not be an issue.

- Ludek

Answers (0)