<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Search results matching tag 'toolbar'</title><link>http://forums.asp.net/search/SearchResults.aspx?q=&amp;tag=toolbar&amp;orTags=0&amp;o=DateDescending</link><description>Search results matching tag 'toolbar'</description><dc:language>en-US</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Any of the Crystalreport toolbar icons not working</title><link>http://forums.asp.net/thread/3297254.aspx</link><pubDate>Thu, 16 Jul 2009 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3297254</guid><dc:creator>enthusiast</dc:creator><description>&lt;p&gt;Hi all,&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;I have implemented crystal report in my website as follows:&amp;nbsp;&lt;/p&gt;&lt;p&gt;In .aspx page:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div style="position:absolute;left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden;" id="_mcePaste"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;CR:CrystalReportViewer ID=&amp;quot;myCrystalReportViewer&amp;quot; runat=&amp;quot;server&amp;quot; AutoDataBind=&amp;quot;true&amp;quot;&lt;/div&gt;
&lt;div style="position:absolute;left:-10000px;top:0px;width:1px;height:1px;overflow-x:hidden;overflow-y:hidden;" id="_mcePaste"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Height=&amp;quot;50px&amp;quot; Width=&amp;quot;350px&amp;quot; style=&amp;quot;position: absolute&amp;quot; EnableViewState=&amp;quot;true&amp;quot; EnableParameterPrompt=&amp;quot;false&amp;quot; ReuseParameterValuesOnRefresh=&amp;quot;True&amp;quot; DisplayGroupTree=&amp;quot;False&amp;quot; ShowAllPageIds=&amp;quot;True&amp;quot; OnNavigate=&amp;quot;myCrystalReportViewer_Navigate&amp;quot; /&amp;gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&lt;span class="Apple-style-span" style="white-space:pre;"&gt;  &amp;lt;CR:CrystalReportViewer ID=&amp;quot;myCrystalReportViewer&amp;quot; runat=&amp;quot;server&amp;quot; AutoDataBind=&amp;quot;true&amp;quot; Height=&amp;quot;50px&amp;quot; Width=&amp;quot;350px&amp;quot; style=&amp;quot;position: absolute&amp;quot; EnableViewState=&amp;quot;true&amp;quot; EnableParameterPrompt=&amp;quot;false&amp;quot; ReuseParameterValuesOnRefresh=&amp;quot;True&amp;quot; DisplayGroupTree=&amp;quot;False&amp;quot; ShowAllPageIds=&amp;quot;True&amp;quot; OnNavigate=&amp;quot;myCrystalReportViewer_Navigate&amp;quot; /&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;In .aspx.vb page:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;pre name="code" class="vb.net"&gt; Protected Sub cmdGenreport_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles cmdGenreport.Click
        reportSetup()
    End Sub

    Public Sub reportSetup()
        Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
        Dim strReportName As String = &amp;quot;&amp;quot;
        If IsPostBack Then
            myConnectionInfo.DatabaseName = &amp;quot;dbname&amp;quot;
            myConnectionInfo.ServerName = &amp;quot;servername&amp;quot;
            myConnectionInfo.UserID = &amp;quot;Username&amp;quot;
            myConnectionInfo.Password = &amp;quot;password&amp;quot;
            myConnectionInfo.Type = ConnectionInfoType.SQL

        End If


        report.Load(Server.MapPath(&amp;quot;~/Report.rpt&amp;quot;))
        SetDBLogonForReport(myConnectionInfo, report)
        report.Refresh()


        &amp;#39;Load Session variables with values from web-controls
        Session(&amp;quot;Semester&amp;quot;) = Me.drpSemester.SelectedValue.ToString()

        Me.panparam.Visible = False

        &amp;#39;Load all parameter fields associated with the report into &amp;quot;fields&amp;quot; object
        Dim fields As ParameterFields
        fields = New CrystalDecisions.Shared.ParameterFields()
        fields = report.ParameterFields


        For Each field As ParameterField In fields
            report.SetParameterValue(field.Name, Session(field.Name))
        Next

        myCrystalReportViewer.ReportSource = report
    End Sub


    Protected Sub myCrystalReportViewer_Navigate(ByVal source As Object, ByVal e As CrystalDecisions.Web.NavigateEventArgs) Handles myCrystalReportViewer.Navigate
       
         report.FileName = Server.MapPath(&amp;quot;~/Report.rpt&amp;quot;)
         Dim fields As ParameterFields
        fields = New CrystalDecisions.Shared.ParameterFields()
        fields = report.ParameterFields
       
    End Sub&lt;/pre&gt;&lt;p&gt;&lt;br /&gt;This code is passing the parameter successfully and report is being generated, but any of the toolbar icons including export and navigation are not working. Whenever I click on the toolbat icons, the report is disappeared from the screen, showing the masterpage only.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;I can not call the connection configuration from page_init because the report has to be called on the click event of the button I have in .aspx page. The icons are not working even on my local machine, so I do not think its because of some permission issues. And, aspnet_client folder is already in the same folder of the website.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;It worked whem I did not have any of the programetically passed parameters and when connnection configuration was being called from page_init.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Please suggest me, what can I do to get rid of this problem.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Thank you,&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description></item><item><title>Report Viewer 2008 Report Load, Toolbar, and Toggle Button Problems</title><link>http://forums.asp.net/thread/2953445.aspx</link><pubDate>Thu, 19 Feb 2009 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2953445</guid><dc:creator>netboy@mindspring.com</dc:creator><description>&lt;p&gt;I am developing with &lt;strong&gt;Visual Studio 2008 SP 1&lt;/strong&gt; and &lt;strong&gt;IE7&lt;/strong&gt; on &lt;strong&gt;Windows Vista Ultimate SP1&lt;/strong&gt;.&amp;nbsp; I am trying to use &lt;strong&gt;Report Viewer 2008/v9.0&lt;/strong&gt; with a &lt;strong&gt;LocalReport&lt;/strong&gt; in an &lt;strong&gt;ASP.NET 3.5&lt;/strong&gt; web application.&amp;nbsp; I currently have the References for Microsoft.ReportViewer.Common and Microsoft.ReportViewer.WebForms configured for local copy, and both Microsoft.ReportViewer.Common.dll and Microsoft.ReportViewer.Webforms.dll are copied to the \bin folder when I build the solution; both DLL&amp;#39;s are version &lt;strong&gt;9.0.30729.1&lt;/strong&gt; (determined by&amp;nbsp;the information displayed when&amp;nbsp;hovering over them in Windows&amp;nbsp;Explorer).&lt;/p&gt;
&lt;p&gt;&lt;font color="#990000"&gt;&lt;strong&gt;The results...&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;When I run the report in&amp;nbsp;debug mode&amp;nbsp;using my Visual Studio, or when I run it in IIS6 on my production Windows 2003 R2 Server, the report is generated and displays in the Report Viewer.&amp;nbsp; However, I am experiencing&amp;nbsp;the following three (3)&amp;nbsp;problems:&amp;nbsp; the report generates an error on load, the toolbar&amp;#39;s functionality is reduced, and the toggle buttons don&amp;#39;t work.&lt;/p&gt;
&lt;p&gt;&lt;font color="#990000"&gt;&lt;strong&gt;Problem 1...&lt;/strong&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;When the report is first loaded,&amp;nbsp;the error:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;font color="#009900"&gt;Microsoft JScript runtime error: Object doesn&amp;#39;t support this property or method&amp;quot;&lt;/font&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;...is&amp;nbsp;trapped:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;font color="#009900"&gt;Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;amp;Version=9.0.30729.1&amp;amp;Name=Microsoft.Reporting.WebForms.Scripts.ReportViewer.js&lt;/font&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;...and the code breaks in my Visual Studio debugger in the above&amp;nbsp;.js file on:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;font color="#009900"&gt;&amp;quot;function OnReportLoaded(reportObject, reloadDocMap)&amp;quot; on line &amp;quot;this.CustomOnReportLoaded();&amp;quot;&lt;/font&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;...but will continue and display the report if I just allow the program to run.&lt;/p&gt;
&lt;p&gt;&lt;font color="#990000"&gt;&lt;strong&gt;Problem 2&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;Only the export and refresh buttons on the toolbar work.&amp;nbsp; The other buttons do nothing that I can see when I click on them, no errors are being detected and trapped when ran in debug mode.&lt;/p&gt;
&lt;p&gt;&lt;font color="#990000"&gt;&lt;strong&gt;Problem 3&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;The toggle buttons (provided when you check the&amp;nbsp;checkbox &amp;quot;Edit Group -&amp;gt; Visibility -&amp;gt; Visibility can be toggled by another report item&amp;quot;)&amp;nbsp;display&amp;nbsp;[+] and keep displaying [+] even after clicking them, they&amp;nbsp;don&amp;#39;t display/toggle the information they should display/toggle when I click on them, and clicking on them&amp;nbsp;causes this error:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;font color="#009900"&gt;Microsoft JScript runtime error: Object doesn&amp;#39;t support this property or method&amp;quot;&lt;/font&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;...trapped in:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;font color="#009900"&gt;Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;amp;Version=9.0.30729.1&amp;amp;Name=Microsoft.Reporting.WebForms.Scripts.ReportViewer.js&lt;/font&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;...and the code breaks in my Visual Studio debugger in the above&amp;nbsp;.js file on:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;font color="#009900"&gt;&amp;quot;function PerformClientSidePageChange(url)&amp;quot; on line &amp;quot;this.CustomOnAsyncPageChange();&amp;quot;&lt;/font&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Can anyone assist?&lt;/p&gt;
&lt;p&gt;Cheers.&lt;/p&gt;</description></item><item><title>How to get rid of these hidden fields embedded in the ReportViewer WebControl's toolbar?</title><link>http://forums.asp.net/thread/2936407.aspx</link><pubDate>Thu, 12 Feb 2009 05:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2936407</guid><dc:creator>hundehasser</dc:creator><description>
&lt;p&gt;Hi there!&lt;/p&gt;

&lt;p&gt;Our reports use OLAP based parameters for fairly large dimensions (&amp;gt;80k members). The ReportViewer WebControl manages all their ValidValues in Javascript using HTML hidden input fields — resulting in some 50MB invisible checkbox mess that&amp;#39;s killing most browsers.&lt;/p&gt;

&lt;p&gt;As our ASP.Net application has its own parameter management (using URL access and POSTing parameters), we don&amp;#39;t need any of this Javascript + hidden field blunder. Currently we are using the redistributable ReportViewerControl 2008 SP1with SSRS 2005 SP2  embedded in an iframe.&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;Passing &lt;code&gt;...rc:Parameters=false...&lt;/code&gt; hides all parameter controls inside the toolbar, but still renders all hidden fields — for whatever purpose (there is no point in
having all this hidden fields without any means to manipulate filter
values). Passing &lt;code&gt;...rc:Toolbar=false...&lt;/code&gt; gets rid of these pesky hidden fields, but we&amp;#39;d really like to keep the toolbar in place (for paging and printing).&lt;/p&gt;

&lt;p&gt;Is there anything we can do about it, maybe some undocumented &lt;code&gt;rc:NoWeReallyDontWantTheseHiddenFieldsButWouldLikeToKeepTheToolbar=true&lt;/code&gt;?&lt;/p&gt;
&lt;p&gt;Thanks and best regards,&lt;br /&gt;Thomas&lt;/p&gt;
</description></item><item><title>How to avoid adding the form tag with server controls?</title><link>http://forums.asp.net/thread/2692694.aspx</link><pubDate>Sun, 19 Oct 2008 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2692694</guid><dc:creator>LLook</dc:creator><description>Hello,

I&amp;#39;ve got this problem: In design mode, when I drag any server control into a page from the toolbar, and that page doesn&amp;#39;t contain any server form tag, then the designer creates one. Even if it&amp;#39;s not necessary (some controls don&amp;#39;t use postback).

Is there any possibility to avoid this behavior, at least for my own controls? Some attribute that I didn&amp;#39;t find?</description></item><item><title>toolbar</title><link>http://forums.asp.net/thread/2554409.aspx</link><pubDate>Wed, 13 Aug 2008 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2554409</guid><dc:creator>gajanan</dc:creator><description>&lt;p&gt;hi friends&lt;br /&gt;&lt;br /&gt;&amp;nbsp;i am developed the toolbar in C# i want to refresh the toolbar when i am doing something from my project(web site page to toolbar)&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Creating toolbars in IE</title><link>http://forums.asp.net/thread/2410310.aspx</link><pubDate>Mon, 09 Jun 2008 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2410310</guid><dc:creator>Nitinkcv</dc:creator><description>&lt;p&gt;Hi all,&lt;/p&gt;&lt;p&gt;Not sure if this is the right place to post this? Recently i had developed a toolbar in Firefox for a firm. Now i would like to extend this toolbar to IE as more than 65% of the people use IE.&lt;/p&gt;&lt;p&gt;So was thinking about any good tutorials or solutions that anyone has come across regarding this task.&lt;/p&gt;&lt;p&gt;Please let me know if this is not the &lt;b&gt;right &lt;/b&gt;place to post this!!!&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;Nitin&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Toolbars in asp.net2.0</title><link>http://forums.asp.net/thread/1919879.aspx</link><pubDate>Fri, 21 Sep 2007 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1919879</guid><dc:creator>bhappy</dc:creator><description>&lt;p&gt;Hi all,&lt;/p&gt;
&lt;p&gt;I&amp;nbsp; Installed IEWebcontrols in my system.and i tryed to write &amp;lt;ie:toolbar&amp;gt;......but it is not working.How to create Toolbars in asp.net2.0.If anybody know plz revert me.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Aswath.&lt;/p&gt;</description></item><item><title>developing a toolbar for a browser</title><link>http://forums.asp.net/thread/1663102.aspx</link><pubDate>Thu, 12 Apr 2007 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1663102</guid><dc:creator>rbunn83815</dc:creator><description>&lt;p&gt;Hello Everyone,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Does anyone know of any good tutorials for creating a toolbar similar to what google and yahoo have?&amp;nbsp; It would be preferable if it shows how it can be done in asp.net.&amp;nbsp; I'll try any browser that I can get step-by-step instructions for.&amp;nbsp; I've found a couple, but they are not asp.net related which makes them a little out of my league at the moment.&amp;nbsp; Thank you in advance.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Robert&lt;/p&gt;</description></item><item><title>Re: How can we create Toolbar in .Net C#</title><link>http://forums.asp.net/thread/1662773.aspx</link><pubDate>Thu, 12 Apr 2007 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1662773</guid><dc:creator>Asif Abdullah</dc:creator><description>&lt;p&gt;That is very good example which you have forwarded but let me further brief that we need downloadable toolbar. like google or yellow pages and all.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;If any one has any idea then please share it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Asif &lt;/p&gt;</description></item><item><title>How can we create Toolbar in .Net C#</title><link>http://forums.asp.net/thread/1656266.aspx</link><pubDate>Sun, 08 Apr 2007 04:00:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1656266</guid><dc:creator>Asif Abdullah</dc:creator><description>&lt;p&gt;Dear All, &lt;/p&gt;
&lt;p&gt;I want to create toolbar as you have seen, google toolbar and other, How can I create it in C#.&lt;/p&gt;
&lt;p&gt;Please assist,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Asif &lt;/p&gt;</description></item></channel></rss>