Crystal Report Viewer not displaying properly in on loading

I am using Visual Studio 2012 in Windows 10 with IIS 8.5. I configured Crystal reports properly but when I load the webpage the Crystal report viewer doesn't load properly and the toolbar and other options are not showing. Please help. Following is the problem am talking about:

Hi Zaeem,
Windows 10 is not currently supported. We plan to add it to the supported platform in SP 14 which is planned for sometime end May.
I tried it and make sure you are loading the Viewer and Report in the Page_Init section. Also the CrystalReportsViewer folder must be included in the project.
Try searching and you'll find info on this subject.
Don

Similar Messages

  • Crystal report viewer not showing any option in browser at run time

    Hello concern
    I am mahendra gohil a student in computer science.
    I am using crystal report viewer with VS 10 . Every thing is fine code is running , in browser data are displayed but I didn't find any options that make print of my document . In my document has multiple pages but it displays only first page. all options are set to true with "pdf" as print mode.
    I have read all post regarding this issue , could not find any solution. Also set "Enable Acrobat Javascript " in adobe reader application.
    I have attached my project image with this question.
    Can any one plz help me to solve this ?

    I am using Firefox 20.0* and Crome 34.0.*
    Here is my code
    page :: viewreport.aspx
    <%@ Page Title="" Language="C#" MasterPageFile="~/ideal.master" AutoEventWireup="true" CodeFile="viewreport.aspx.cs" Inherits="Default3" %>
    <%@ Register assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web" tagprefix="CR" %>
    <asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
        <style type="text/css">
        .style1
            width: 100%;
    </style>
    </asp:Content>
    <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
        <table class="style1">
        <tr>
            <td>
                 </td>
            <td>
                 </td>
        </tr>
        <tr>
            <td colspan="2">
                <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
                    AutoDataBind="True" EnableDatabaseLogonPrompt="False"
                    GroupTreeImagesFolderUrl="" Height="50px"
                    ToolbarImagesFolderUrl="" ToolPanelWidth="200px" Width="881px"
                    ToolbarStyle-BackColor="#33CC33" ToolbarStyle-BorderColor="#FF5050"
                    ToolbarStyle-BorderStyle="Dashed" />
            </td>
        </tr>
    </table>
    </asp:Content>
    page :: viewreport.aspx.cs
                ReportDocument rp = new ReportDocument();
                rp.Load(Server.MapPath("IPD_BILL.rpt"));
                string payment_str = "SELECT * from report";
                DataSet ds = new DataSet();
                ds = conn.read_op(payment_str);       
                rp.SetDataSource(ds.Tables[0]);
                CrystalReportViewer1.ReportSource = rp;

  • Crystal Report Viewer Not Releasing Oracle Database Connections

    I have a very simple vb.net 3.5 web application that uses the Crystal Report viewer 2008 to open a report. My requirements are as follows:
    1. Reports are built by another company and provided to us and used in a web environment
    2. All reports contain parameter fields
    3. The web application must be generic enough that a report can be added to a list and the user simply selects the report and provides database login information. The Crystal report viewer with handle the request for parameter values and prompt the user for their values.
    4. All reports connect to an Oracle 10g server.
    The above requirements have been meet and we have an extremely simple web application that runs the reports. It is working very well other than the crystal report viewer is not releasing the database connections. This is bad because the credentials are on a per user basis and that same user must login to a different oracle application simultaneously. They are being denied access because the credentials are already in use. We do not have control nor influence over the policies in use on the Oracle server. Ideally we would like to control the Crystal Report viewer so that it closes connections after use.
    The web application code is:
    Private Sub viewReports_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
    If Not IsPostBack Then
    ConfigureCrystalReport()
    End If
    End Sub
    Private Sub ConfigureCrystalReport()
    'Load the Crystal Report viewer with a report.
    Try
    Dim reportPath As String = Server.MapPath(Session("reportname"))
    crViewer.ReportSource = reportPath
    Catch ex As Exception
    Response.Write(Server.MapPath(Session("reportname")) & "
    " & ex.Message.ToString & "
    " & ex.StackTrace.ToString)
    End Try
    End Sub
    Can anyone shed some light on this topic? Thank you

    Hello, Timothy;
    By default, having the report in session will hold it open for 20 minutes.
    If you create the report as a ReportDocument object you can take it out of session and release it more efficiently. That will release the connection.
        Private Sub ConfigureCrystalReports()
            If (Session("hierarchicalGroupingReport") Is Nothing) Then
                hierarchicalGroupingReport = New ReportDocument()
                hierarchicalGroupingReport.Load(Server.MapPath("Hierarchical Grouping.rpt"))
                Session("hierarchicalGroupingReport") = hierarchicalGroupingReport
            Else
                hierarchicalGroupingReport = CType(Session("hierarchicalGroupingReport"), ReportDocument)
            End If
            myCrystalReportViewer.ReportSource = hierarchicalGroupingReport
        End Sub
    In the Form Unload of the Viewer:
                'Take the report out of session
                Session("hierarchicalGroupingReport")  = Nothing
                Session.Contents.Remove("hierarchicalGroupingReport")
                'Clean up the ReportDocument object
                hierarchicalGroupingReport.Close
                hierarchicalGroupingReport.Dispose()
                hierarchicalGroupingReport = Nothing
                GC.Collect()
    Elaine

  • Crystal Report Viewer Not viwed - Through APP Server Re-Direction

    Hello Team
    I have a critical problem in my organizaion for viewing the reports.
    Configuration that we are using:
    1. Windows Server 2008 R2
    2. Crystal 13 - Server Trial Version - Expiring on Aug-25th, 2014
    3. Used Visual Studio 2010 - .NET
    4. IIS 7.0 - configured a  Virtual Directory for ASP.NET application
    Out Application is using an Oracle APP Server to view the HTML. A button is provided in the HTML to redirect to view the Crystal Report.
    when I click on the Hyperlink and the url is directly accessed, then the Report is being shown without any issue.
    But ours is a corporate application and we have given a provision of accessign this application when users are outside of network. Hence the Crystal Server is under fire-wall. So, I cannot access it directly with a URL. Hence the app server is configured in such a way that if it find a name like "Reports" in the URL, then it redirects to the actual Web Server and gets back the data to the browser.
    for URL redirection, the app server is configured as below
        ProxyPass /crystalreportviewers/ http://<<ServerIP>>/crystalreportviewers/
        ProxyPassReverse /crystalreportviewers/ http://<<ServerIP>>/crystalreportviewers
        ProxyPass /reports10/ http://<<ServerIP>>/reports10/
        ProxyPassReverse /reports10/ http://<<ServerIP>>/reports10
    When the user redirects from the APP server using those redirection rules, the pages are being executed but the final crystal report viewer control is not being shown on the browser. I am not sure if we need to perform any other steps to get these thigns done.
    Our server is behind fire-wall and whenever I am in network, I used to get the output but when the redirection happens not able to load the Crystal Report Viewer. Not sure, if there are any other security rules that I need to consider to get back the CrystalReportViewer.
    Also, there is something called CrystalReportInteractiveViewer prior to Crystal13. Do we have anything as such in Crystal 13 also? Please help me in getting this worked.
    Please let me know if I am not clear in my explanation and I can certainly provide you a better information based on your queries.
    Thanks
    -Srinivasa Nadella

    Hi Srinivasa,
    Please move this thread to SAP Crystal Reports, version for Visual Studio
    Helpful threads: Having issues with Crystal reports report viewer
    c# - Application level assembly redirection not working - Stack Overflow
    asp.net mvc - Why is my Crystal Report and Viewer invisible on a Web Form in an MVC application? - Stack Overflow
    Regards,
    DJ

  • Design View not displaying properly

    I am pretty new to Dreamweaver.  I can't get my Design view to display properly, even when tried on two different computers.  The top div displays properly, then on the nav bar, only the background shows with the table items just listed in a row.  There are a lot of black background segments to the page, and thin yellow lines.  The main content shows at the bottom after a big chunk of black background blocks.  The page shows perfectly fine in a browser.  I can only work in Code view because of this.  Any suggestions?
    If it helps, here is my html:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>dentonquiltguild</title>
    <link href="includes/gallery.css" rel="stylesheet" type="text/css" />
    <link href="dqgfinal_styles.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrapper">
    <!--[if lte IE 6]>
    <![endif]-->
    <style type="text/css">
    </style>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    </script>
    <div id="top">
      <div id="logotemp"><img src="images/logo.gif" width="280" height="175" alt="logo" /></div><!--logotemp -->
      <div id="quilt_top"><img src="images/quilt_top_01.png" width="550" height="209" alt="quilt top" /></div>
    </div><!--top --> 
    <div id="navbar">
       <ul id="MenuBar2" class="MenuBarHorizontal">
         <li><a href="index.html"><a href="index.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image8','','images/homered_03.gif',1)"><img src="images/homewhite_03.gif" alt="home button" name="Image8" width="101" height="43" border="0" id="Image8" /></a> </li>
         <li><a href="general.html" class="MenuBarItemSubmenu"></a><a href="general.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image9','','images/generalred_03.gif',1)"><img src="images/generalwhite_03.gif" alt="general button" name="Image9" width="101" height="43" border="0" id="Image9" /></a>
           <ul>
             <li><a href="meetings.html">Meetings</a></li>
             <li><a href="showandtell.html">Show &amp; Tell</a></li>
             <li><a href="library.html">Library</a></li>
             <li><a href="blogs.html">Blogs</a></li>
        <li><a href="retreat.html">Retreat</a></li>
           </ul>
         </li>
         <li><a class="MenuBarItemSubmenu" href="members.html"></a><a href="members.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image10','','images/membersred_03.gif',1)"><img src="images/memberswhite_03.gif" alt="members button" name="Image10" width="101" height="43" border="0" id="Image10" /></a>
         </li>
         <li><a href="community.html" class="MenuBarItemSubmenu"></a><a href="community.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image11','','images/communityred.gif',1)"><img src="images/communitywhite_03.gif" alt="community button" name="Image11" width="101" height="43" border="0" id="Image11" /></a>
           <ul>
             <li><a href="kidskwilts.html">Kids Kwilts</a></li>
             <li><a href="storybooks.html">Storybooks</a></li>
             <li><a href="sowinghope.html">Sowing Hope</a></li>
           </ul>
         </li>
         <li><a href="contacts.html" class="MenuBarItemSubmenu"></a><a href="contacts.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image12','','images/contactsred_03.gif',1)"><img src="images/contactswhite_03.gif" alt="contacts button" name="Image12" width="101" height="43" border="0" id="Image12" /></a>
           <ul>
             <li><a href="board.html">Board</a></li>
             <li><a href="bees.html">Bees</a></li>
             <li><a href="resources.html">Resources</a></li>
             <li><a href="shops.html">Shops</a></li>
             <li><a href="guilds.html">Guilds</a></li>
           </ul>
         </li>
       </ul>
    </div><!--navbar -->
    <div id="quilt_bottom"><img src="images/quilt_bottom_02.png" width="550" height="128" alt="quilt bottom" /></div>
    <div id="maintemp">
      <div id="next">
      <div id="next_meeting_text">
        <div align="center">Next Meeting<br/> March 15
          </div><!--center -->
      </div><!--next_meeting_text -->
      <div><!--speaker_text -->
        <div  align="center"><a href="http://americanjane.com" id="speaker_text">Sandy Klop<br/>"American Jane"</a></div><!--align -->
      </div><!--speaker_text -->
      <div id="calendar_button">
        <div align="center"><a href="calendar.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image6','','images/calendar_ro_03.gif',1)"><img src="images/calendar_03.gif" alt="calendar button" name="Image6" width="136" height="54" border="0" id="Image6" /></a></div>
      </div><!--calendar_button -->
      <div id="events_button">
        <div align="center"><a href="events.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image7','','images/events_ro_03.gif',1)"><img src="images/events_03.gif" alt="events button" name="Image7" width="136" height="54" border="0" id="Image7" /></a></div>
        </div><!--events_button -->
    </div><!--next -->
    <div id="main_head">Welcome To The <br/>Denton Quilt Guild</div><!--main_head -->
    <div id="main_text">
          We are a group of over 200 quilters creating everything from traditional quilts, to art quilts, and everything in between.  New members and visitors are always welcome to our meetings on the 3rd Thursday of each month.<br />
          The Denton Quilt Guild provides a service to the local community by providing quilts to children in need, offering our Storybooks and Quilts To Go to our local schools, and participating in local events such as the Storytelling Festival.  Quilters of all levels are welcome!
          </div><!--main_text -->
        <div id="bottom">
        <div id="copyright"><img src="images/copyright.gif" width="127" height="8" alt="copyright" /></div><!--copyright --> 
        <div id="facebook"><a href="http://www.facebook.com/groups/42514709926/"><img src="images/facebook.gif" width="112" height="45" alt="facebook" /></a></div>
      </div>  
    </div>
    </div><!--maintemp -->
    </div><!--wrapper -->
    <script type="text/javascript">
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

    I still cannot solve this problem.  Can ANYONE out there help, or tell me where I can find the answer.  Now I will attach two screen shots of what my Design View looks like.  It happens on all pages I have created.  I do like working in  code view, but there are times when it's easier, almost essential for me to work in Design view.  If it works for some people, why not me?
    These images are the top and then the bottom of the same page.  I have turned CSS rendering on and off, but nothing helps.

  • Report Viewer not displaying on deployment server

    Hi,
    I am using Visual Studio 2010 with the crystal reports down load to use the viewer. I am using version 13.0.2 with SP1. I have the redistributable package installed on the windows server 2003(32-bit) with .NET Framework 4 where the web app is being deployed. The problem that I am having is that the report view isn't displaying, although it appears that the report itself is being processed. It all works on my development machine which is running windows 7 enterprise(64-bit) with .NET Framework 4. I have been reading through where other people have had problems getting parts of the view to display, like the buttons or charts, but my problem is that the viewer doesn't show up at all. I am not sure why this is happening but I think that it has something to do with the application not know where to look for the viewer dlls or something.
    Any help that people can give me would be very much appreciated. Also let me know if I have put this in the wrong spot.
    Thank you in advance.
    Mark.
    Edited by: Mark Witte on Jun 22, 2011 10:14 PM

    See the following articles. I suspect you are using a custom website and thus as you suspect, the CR engine has no idea where to find the viewer. Forget about red x in the articles, just read up on how to configure custom web site. Also, the article does not go as far as CRVS2010, so the directories are a bit different, but the ideas are the same.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0437ea8-97d2-2b10-2795-c202a76a5e80
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50aa68c0-82dd-2b10-42bf-e5502b45cd3a
    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]

  • Crystal report viewer are displaying blank page after deploying in web server

    Dear friends,
                       i have designed crystal report (in VS2010 &  CRRuntime_64bit_13_0_6 installed in web server) it's working fine in local machine even web server also but in http://localhost, if i change from localhost to my domain name or local IP address(like http://192.168.1.71) then it's getting blank page.
    but same report if i open in pdf format it's working fine.
    I have tried the following one. But this is not working for me.
    Copy the entire Crystal Report Support folder
    C:\inetpub\wwwroot\aspnet_client\system_web\4_0_30319\crystalreportviewers13
    in web.config, the below code also added.
    <sectionGroup name="businessObjects">
          <sectionGroup name="crystalReports">
            <section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler" />
          </sectionGroup>
        </sectionGroup>
    <crystalReportViewer>
    <add key="resourceURI" value="~/crystalreportviewers13"/>
    </crystalReportViewer>
    please suggest me some solutions to resolve this issues...
    Regards,
    Manikandan.V

    Have a look at this blog for how to configure the viewer:
    Visual Studio 2012 Crystal Report not working on Windows Server 2012/ 0x800a1391 &amp;#8211; JavaScript runtime error: &…
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • CRYSTAL REPORT VIEWER NOT FOUND IN VC++

    Hi All,
    I am migrating our appn VC++ 6.0 code to VS 2010(MFC code compiled in VS2010). I could able to compile all the code in VS 2010 and i am created vb.net report application using crystalreport viewer, it working fine, afterthat i am converted vb.net code  to C#.
    My questions are,
    1) how to add crystalreportviewer control in VC++ (searched not found) or alternative any control is available in vc++ using same c# code?
    2) if its possible , to load rpt files without viewer control ? ,if yes, please provide me sample code.
    Regards,
    Esha Abdullah M

    I found one, since you never looked, to get you going. It's written in C++, just change the assemblies to CR for VS 2010
    General
    Crystal Reports .NET - All Sample Applications
    This set includes the following samples:
        cr_net_sdk_tutorial_samples_en.zip
        crsdk_net_samples_12.zip
        NET-CPP2005_CRNET_CR115_Change_Record-Selection-Formula.zip
    #using <C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet\CrystalDecisions.CrystalReports.Engine.dll>
    #using <C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet\CrystalDecisions.Shared.dll>
    #using <C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet\CrystalDecisions.Windows.Forms.dll>
    And comment out the Page event, seems they don't work in 2010, we changed the event handler:
    //               this->crViewer->ClickPage += new CrystalDecisions::Windows::Forms::PageMouseEventHandler (this,&ViewForm::crystalReportViewer1_ClickPage);
    //               this->crViewer->DoubleClickPage += new CrystalDecisions::Windows::Forms::PageMouseEventHandler (this,&ViewForm::crystalReportViewer1_ClickPage);
    Don
    Edited by: Don Williams on Jul 13, 2011 9:05 AM

  • Crystal report Viewer Not Showing Control Bar Button Icons

    Hi
    I am using Crystal report along with .net 2003 in web application.
    While executing, the report  its not showing any errors,but the control bar buttons(print, export, next page last page, previous page, first page, etc ) are showing without there icons.
    These invisible buttons can be found by placing the mouse over the specified area, then it shows the tool tip like print etc.
    Please give me solution.

    Would you like to have a look at these:
    [1.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bip/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233303336333633373339%7D.do]
    [2.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333133383333333933313333%7D.do]
    [3.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233303332333533323337%7D.do]
    [4.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313338333733363334%7D.do]
    [5.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313336333333303335%7D.do]
    [6.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bip/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333133393338333833393338%7D.do]
    Hope this helps!
    AG.

  • Table in design view not displaying properly

    I put in a table at 100% width - to house a spry menu.  It shows up fine in all browsers and in live mode, but in dreamweaver design view the table and menu display off to the right - outside of the workspace. It's a pain!  How do I fix this?

    You certainly do NOT need a table to hold your menu -- no matter which one you use.
    Table layouts went the way of the dinosaur last century.  Nowadays, we use CSS for layouts.  To illustrate, copy & paste this code into a new, blank document and preview in browsers.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Document</title>
    <style>
        /**fixes the box model**/
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    /**basic layout**/
    body {
        width: 80%; /**adjust width in px, em or % as desired**/
        margin:0 auto; /**with width, this is centered**/
        background: maroon;
        font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
        font-size: 100%;
    header, footer { color: #FFF; }
    /**left sidebar**/
    aside {
        display:table-cell;
        width: 25%;
        padding: 1%;
        background: #C99;
    /**main content**/
    article {
        width: 75%;
        display:table-cell;
        padding: 2%;
        border-left: 1px dotted silver;
        background: #EAEAEA;
    footer {
        clear: left;
        font-size: 80%;
        text-align: center;
    /* BEGIN HORIZONTAL DROP-MENU */
    nav {
        position: relative;
        width: 100%;  /**adjust width as needed**/
        margin: 0 auto;
        padding: 0;
        text-align: center;
        z-index: 1000;
    nav ul {
        margin: 0;
        padding: 0
    nav li {
        list-style: none;
        font-size: 12px;
        float: left;
        text-align: center;
    /**top level menu**/
    nav li a {
        display: block;
        text-decoration: none;
        margin-right: 2px;   /* space between links */
        width: 12em;   /* adjust as needed or use auto */
        padding: 6px 15px;
        font-weight: bold;
        line-height: 2em;
        color: #1e5799;
        border: 1px solid #FFF;
        background: #C7D5E3;
    /**top menu style on mouse over**/
    nav li:hover > a {
        color: #FFF;
        background: #1e5799;
    /**sub-menu**/
    nav li ul {
        display: none;
        text-align: center;
        margin: 0;
        padding: 0 1em;
        background: #C7D5E3;
        font-weight: normal;
        font-style: oblique;
    /**sub-menu, help for older IE**/
    nav li:hover ul, nav li.hover ul {
        display: block;
        position: absolute;
        padding: 0;
    nav li:hover li, nav li.hover li { float: none; }
    /**drop-menu style**/
    nav li:hover li a, nav li.hover li a {
        width: 12em;  /* adjust width as needed or use auto */
        margin-top: 0;
        line-height: 1.25em;
        font-weight: normal;
        border: none;
    /**drop-menu style on mouse over**/
    nav li li a:hover {
        background: #D3E1B7;
        color: #004A43;
    /**clear floats**/
    nav:after {
        clear: both;
        display: block;
        content: '';
    /**END DROP MENU STYLES**/
    </style>
    </head>
    <body>
    <header>
    <h1>Your Awesome Site Name</h1>
    <h2>Some Pithy Slogan</h2>
    </header>
    <nav>
    <ul>
    <li><a href="#">Menu Item1 &#9660;</a>
        <ul>
        <li><a href="#">Sub_menu1a</a> </li>
        <li><a href="#">Sub_menu1b</a> </li>
        </ul>
    </li>
    <li><a href="#">Menu Item2 &#9660;</a>
        <ul>
        <li><a href="#">Sub_menu2a</a> </li>
        <li><a href="#">Sub_menu2b</a> </li>
        <li><a href="#">Sub_menu2c</a> </li>
        <li><a href="#">Sub_menu2d</a> </li>
        </ul>
    </li>
    <li><a href="#">Menu Item3</a></li>
    <li><a href="#">Menu Item4</a></li>
    <li><a href="#">Menu Item5</a></li>
    </ul>
    </nav>
    <aside>
    <h3>Left Sidebar</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus. </p>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. </p>
    </aside>
    <article>
    <h3>Aritcle Heading</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    </article>
    <footer>
    <small>© 2015 Your Site Name. All rights reserved.</small>
    </footer>
    </body>
    </html>
    Nancy O.

  • Depreciation Simulation report is not displaying properly

    I'm testing the simulation report S_ALR_87012936.  Assets depreciate straight line over 10 years. 
    Running the report by month for FY 2007 that ends 9/30/07.
    Asset starts depreciating in June - Run rate should be $100/month.  What I see on the report is $100 for June $100 for July <b>Negative depreciation of $200 for August</b> and then depreciation of $400 in September. 
    Asset Explorer is showing the run rate correctly.  Why would the report be off?  I've never experienced this before.

    check whether someone has set the
    PERSONALIZATION OF VARIABLE on.
    REFRESH the query.
    In the pop-up screen check PERSONALIZATION OF VARIABLE.
    This is the small face on the left hand side of the variable. Maybe this is set to a constant value in case of tha date variable.
    click on the face icon to find it out.
    MG.

  • Crystal Report Viewer changes font

    Hello,
    I am having an issue with Crystal Report Viewer NOT displaying the correct fonts. Below are the steps to recreate the issue
    1) Created a Blank Crystal Report using Crystal Report 2008.
    2) Added a few fields in them and selected the following font for all the fields :Courier 10 cpi
    3) Saved the report with data.
    4) Viewed the report using Crystal Report Viewer 2008.
    5) The fields displayed in this Report Viewer is NOT Courier 10 cpi.
    Please tell if there is a fix for this problem. Please Note that using a different font is NOT an option since I will be printing the report to a Dot Matrix printer. Using a different font will slow down the printing speed.
    Thanks
    Krishnan

    Hi Carl,
    There is a font named Courier 10,12,15(VGA res) installed on the machine.
    Also  the Courier 10 cpi is selected on all fields on the report. But when I view the report from CR viewer, it changes to a different font.
    Also the report does not print properly to the dot matrix printer. The speed of the report is very slow and the page alignment is off. The first 2 lines of the 2nd page are printed at the end of the first page. The first 4 lines of the 3rd page prints at the end of the 3rd page and it keeps getting worse by each page.
    Krishnan

  • Crystal Reports Visual Studio 2010 Report Viewer Not Rendering

    Hello,
    I was able to get Crystal Reports deployed in a web application in VS 2008 OK, but now I am having trouble with CR and VS 2010. For some reason the data and images for the report are being displayed,  but the report viewer controls and background are not. I am not getting red Xs, the viewer is just not there. I have tried changing my references, I have installed the CR run time, and all permissions are correct. I am trying to get this up and running on the local machine. Has anyone dealt with this problem before?
    thanks.

    See if [this|Report Viewer not displaying on deployment server; thread helps.
    - Ludek

  • Crystal Reports Viewer - pdf, prompts, icons problem

    Hi all,
    I am a new in BO.
    I have some answer about Crystal Reports Viewer (not about setup.exe but about CRV application that I uploaded on Tomcat)
    1) The old version (11.5) works good, only Export to PDF functionality is wrong. There are in the pdf file wrong display of specific czech characters (charset)
    2) A new version, Crystal Reports Viewer 2008, show the same pdf mistake. I have J2SE Runtime Environment 5.0 Update 4 and Apache Tomcat 5.5.9.
    I upload application on Tomcat, configuration (web.xml, crconfig.xml and context.xml) is the same with version 11.5.
    Crystal Reports Viewer 2008 displayed reports, but the problem with PDF is present. The second problem is the look of CRV. First one, the icons (for export, print...all icons) are not displayd. I can copy old jar files into java (in application folder C:\WebReports\WEB-INF\lib), but then CRV looks like old version.
    And CRV 2008 doesn't display listbox in dynamic prompt on crystal report. What shall I set to displaying prompts in CRV 2008 (on CRV or on report in Crystal 2008)?
    Have you some idea? What and how can I set and configure application and where?
    Veronika

    Hi,
    To confirm, are you talking about "Crystal Reports Viewer 2008" http://www.sap.com/solutions/sapbusinessobjects/sme/reporting/viewer/index.epx
    I suggest sending in the report, in the viewer, select "Help" - "General Feedback" and then pick the option to attach the report.  In a couple of months there will be a refresh version of this view which will have Czech language support so it would be good if we could test out your PDF issue.
    As for showing parameters in the prompt panel in Crystal Reports Viewer 2008, since the viewer cannot refresh the data, make sure the parameter does not used in the record selection formula but only in the saved data selection formula.

  • How to change default Export Format Type in Crystal Report Viewer

    We are coding in VB.NET 2005 using the CR2008 SP1 .NET objects.
    The Crystal Report Viewer, when displayed, defaults the export type as .rpt (Crystal Reports).
    We distribute our .NET application to our customers.  99% of the time, this .rpt format is useless to our customers as they do not have crystal reports developer.  They usually export to a .pdf or .xls format.  Is there a way to default this export option to something other than .rpt?
    Thank you.

    Yes, that's as much as I figured.
    With the Crystal for .NET methods, the CrystalDecisions.CrystalReports.Engine's reportdocument object has an ExportToDisk method.  We wanted to use this (as we used something similar with the RDC) to prompt the user to export.  However, the reportdocument's exporttodisk method does not have an argument that allows for Prompting the user (true/false) like the RDC's export did.  You have to actually know ahead of time the type of export the user wants as well as the filename.  Well, we do not, and therefore, want the user to be able to select the type of export they want as well as enter their own filename.  We want the Crystal methods to prompt for this.  Since we are unable to, we've had to resort to declaring a reportviewer object and setting the viewer's reportsource = to the reportdocument.  We then use the ExportReport() method which defaults to .rpt (which none of our end users have Crystal Developer).  This is why we want to know if there is a way to reset the default export method to something more common (such as .pdf or .xls).  Is there a way to change the reportdocument's file type in order to default the export type?  Just trying to come up with some sort of workaround...
    Thanks

Maybe you are looking for

  • Problem with JNDI in WLS 5.1

    Hi all, i have a problem with JNDI in WLE 5.1. i am accessing an LDAP on another machine running Netscape Directory Server. The host URL is ldap://myhost:65535/o=marco, c=fi i am always getting back the following exception: javax.naming.NoInitialCont

  • Process exited with code 0 while executing loan application

    Hello, when i run the ejb bean i am getting the below error.anybody can help me that would be appreciated. E:\softwares\Jdevelopver\jdevstudio10131\jdk\bin\javaw.exe -client -classpath E:\softwares\PracticeSOA\LoanApps\SOAService\classes;E:\softwares

  • DV6500 Physical Memory Limitation to 3gb

    Hi All, My DV6500 Entertainment PC came with Windows Vista 32-bit preinstalled which limited my usable memory from 4gb to 3gb. I recently upgraded to Windows Home Premium 32-bit which I believe has a physical memory limitation of 4gb (http://msdn.mic

  • SAP script and External docs - print in PDF

    Hello, We are printing maintanence orders (SAP script) through IW32 and recently we have added custom logic to print the external docs(word or excel) attached to the maintanence orders. So if we print a maintanence order with two attachments, we woul

  • Dynamic Report layout issue - Report builder 10g

    Hi all, I try to implement a dynamic report that have: 1.my_header - variable elasticity 2.my_footer - variable elasticity - the bottom it is anchored to the bottom of my_report frame 3.my_body - variable elasticity -must fit between the header and f