Question is about crystal report viewer. Like folks says: 'picture tells more then thousand words', so look at attach picture.
regard j
Printable View
Question is about crystal report viewer. Like folks says: 'picture tells more then thousand words', so look at attach picture.
regard j
You cant remove that. However you may be able to change its name. Look here:
http://groups.google.com/groups?hl=e...atusbar%2Bhide
Use this code after setting the source of your reportviewer
VB Code:
Dim ctl As Control For Each ctl In CrystalReportViewer1.Controls If TypeOf ctl Is CrystalDecisions.Windows.Forms.PageView Then Dim ctl1 As Control For Each ctl1 In ctl.Controls If TypeOf ctl1 Is System.Windows.Forms.TabControl Then Dim ctl2 As TabPage For Each ctl2 In CType(ctl1, TabControl).TabPages If ctl2.Text = "MainReport" Then ctl2.Text = "TEST" Next End If Next End If Next