CRVS2010 beta 2 - header underline adding spaces

Hello,
I'm noticing that headers that are 2 words and the second word is a number, there is a space/break in the underline
For example Address 1 instead of Address 1.
I reported this in beta 1 (see CRVS2010 beta - header underline adding spaces) and hoped that it would have been fixed.
I'm wondering if it is on the list of things to fix for the final release.
Thank you.

I assume you are referring to the embedded designer's preview is breaking the underline betweeen the word and the number (ie: Address 1).  I am able to reproduce with the CR for VS 2010 Beta2. 
I found that the WinForms and ASP.NET CR runtime viewers do not have this issue but the WPF viewer does have this issue.
I will log a bug for both issues.
As a potential workaround, instead of underlining the field, format the object (right-click the object and select Format Object), on the Border tab, set the Bottom line style to "Single".  This is not ideal but it may work for you.
-Mandeep

Similar Messages

  • CRVS2010 beta - header underline adding spaces

    Hello,
    I'm noticing that headers that are 2 words and the second word is a number, there is a space/break in the underline
    For example Address 1 instead of Address 1.
    I don't recall this happening in the prior version of cr.net and i can't find a way to fix it.
    Any help would be appreciated.
    Thank  you.

    Hi Don,
    I used the fre cr2008 viewer to test this spacing problem and so far I have not seen the strange underline issue that happens on the viewer that comes with crvs 2010.
    I also noticed that the free vieer does not display extra spaces at the end of text objects like the viewer that comes with crvs 2010 does. The extra spaces issue did not happen in the previous version of crvs, so I'm hoping that this will be fixed in crvs 2010 before it goes live.
    Don't take this the wrong way, but I am happy to know that you are getting strange results when testing in different viewers. The reason I say that is because I started testing way after many others, but so far any of the issues that I have encountered were not posted here before I started. Often,  for a split second I was thinking that there was something wrong with my installation of crvs 2010. Having you and David here letting me know that you are finding the same issues that I'm reporting is a good step in the right direction for me.
    Someone replied to one of my messages saying that there would be another beta. I can't find the message now (why I have no idea), do you know when that beta will be released?
    Thank you again for all of your responses. I really appreciate it.
    Tracy

  • CRVS2010 Beta - FormulaException when adding condition for group summaries

    Hello,
    I have an application that makes some changes in a report and show the preview in a WPF Viewer.
    At some point, I define the following formula:
    crFormulaFieldDefinition.Text = "Maximum({Categories.CategoryID},{Products.Discontinued},'any change'}"
    This triggers the following exception:
         cryRpt.HasRecords     'cryRpt.HasRecords' threw an exception of type     'CrystalDecisions.CrystalReports.Engine.FormulaException'     bool {CrystalDecisions.CrystalReports.Engine.FormulaException}
    But when I tried to do the same thing with the condition 'change to Yes', no exception was launched.
    Does anyone know if I am doing something wrong or this is a bug in the Beta release???
    Thanks,
    Igor

    I do not have an answer for you, but Beata 2 has released and might be worth trying.
    /people/blair.wheadon/blog/2010/07/29/crystal-reports-for-visual-studio-2010-beta-2-and-runtimes-now-available
    Ludek

  • CRVS2010 beta - Date field from database does not display in report

    Hi there - can someone please help?!
    I am getting a problem where a date field from the database does not display in the report viewer (It displays on my dev machine, but not on the client machines...details given below)
    I upgraded to VS 2010
    I am using the CRVS2010 Beta
    My development machine is Windows 7 - and so is my fellow developer's
    We are using Microsoft SQL Server 2000
    We run the queries within VS and then we send the data table to VS using .SetDataSource
    We have a few reports which display the date on our dev machines (whether we run the EXE or from within Visual Studio)
    When we roll out to the client machines (running Windows XP SP3) then everything works, except that the date does not display (on quite a few reports)
    This is the only real issue I have had - a show stopper for me
    The rest works well - any input will be greatly appreciated
    Regards,
    Ridwan

    Hi Ridwan,
    After much testing I have it all working now using CRDB_adoplus.dll as a data source ( XML )
    Alter your Config file to look like this:
    <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0"/>
    </startup>
    Then using the code below, and CR requires the Schema to be able to read the date format.
    private void SetToXML_Click(object sender, EventArgs e)
    CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    ISCDReportClientDocument rcd;
    rcd = rptClientDoc;
    string connString = "Provider=SQLOLEDB;Data Source=dwcb12003;Database=xtreme;User ID=sb;Password=password";
    string sqlString = "Select * From Orders";
    OleDbConnection oleConn = new OleDbConnection(connString);
    OleDbDataAdapter oleAdapter = new OleDbDataAdapter(sqlString, oleConn);
    //OleDbDataAdapter oleAdapter2 = new OleDbDataAdapter(sqlString2, oleConn);
    DataTable dt1 = new DataTable("Orders");
    oleAdapter.Fill(dt1);
    System.Data.DataSet ds = new System.Data.DataSet();
    // We need the schema to get the data formats
    ds.WriteXml("c:
    sc.xml", XmlWriteMode.WriteSchema);
    //Create a new Database Table to replace the reports current table.
    CrystalDecisions.ReportAppServer.DataDefModel.Table boTable = new CrystalDecisions.ReportAppServer.DataDefModel.Table();
    //boMainPropertyBag: These hold the attributes of the tables ConnectionInfo object
    PropertyBag boMainPropertyBag = new PropertyBag();
    //boInnerPropertyBag: These hold the attributes for the QE_LogonProperties
    //In the main property bag (boMainPropertyBag)
    PropertyBag boInnerPropertyBag = new PropertyBag();
    //Set the attributes for the boInnerPropertyBag
    boInnerPropertyBag.Add("File Path ", @"C:\sc.xml");
    boInnerPropertyBag.Add("Internal Connection ID", "{680eee31-a16e-4f48-8efa-8765193dccdd}");
    //Set the attributes for the boMainPropertyBag
    boMainPropertyBag.Add("Database DLL", "crdb_adoplus.dll");
    boMainPropertyBag.Add("QE_DatabaseName", "");
    boMainPropertyBag.Add("QE_DatabaseType", "");
    //Add the QE_LogonProperties we set in the boInnerPropertyBag Object
    boMainPropertyBag.Add("QE_LogonProperties", boInnerPropertyBag);
    boMainPropertyBag.Add("QE_ServerDescription", "NewDataSet");
    boMainPropertyBag.Add("QE_SQLDB", "False");
    boMainPropertyBag.Add("SSO Enabled", "False");
    //Create a new ConnectionInfo object
    CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo boConnectionInfo =
    new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
    //Pass the database properties to a connection info object
    boConnectionInfo.Attributes = boMainPropertyBag;
    //Set the connection kind
    boConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE;
    //*EDIT* Set the User Name and Password if required.
    boConnectionInfo.UserName = "";
    boConnectionInfo.Password = "";
    //Pass the connection information to the table
    boTable.ConnectionInfo = boConnectionInfo;
    //Get the Database Tables Collection for your report
    CrystalDecisions.ReportAppServer.DataDefModel.Tables boTables;
    boTables = rptClientDoc.DatabaseController.Database.Tables;
    //For each table in the report:
    // - Set the Table Name properties.
    // - Set the table location in the report to use the new modified table
    boTable.Name = "Orders";
    boTable.QualifiedName = "Orders";
    boTable.Alias = "Orders";
    rptClientDoc.DatabaseController.SetTableLocation(boTables[0], boTable);
    //Verify the database after adding substituting the new table.
    //To ensure that the table updates properly when adding Command tables or Stored Procedures.
    rptClientDoc.VerifyDatabase();
    MessageBox.Show("Data Source Set", "RAS", MessageBoxButtons.OK, MessageBoxIcon.Information);
    Thanks again
    Don

  • CRVS2010 Beta- Some Installation files are corrupt

    Hello,
    I am trying to download the CRVS2010 beta.  It downloads and when I run the cr4vs2010.exe I get this error:
    "Some installation files are corrupt.
    Please download a fresh copy and retry the installation"
    I have tried redownloading multiple times with different browsers to no avail.  I need this downloaded ASAP as we have multiple crystal reports that were ported over from VS 2008.
    Please Help.

    Hi Burns,
    I just downloaded from the US link and ran the installer and it worked for me. It extracted all of the files and it appears the setup engine is almost the last file it extracts.
    I believe this is a permission issue. Does it get as far to create this folder:
    C:\Program Files (x86)\SAP BusinessObjects\InstallData\logs
    or any \SAP BusinessObjects folders?
    Try adding the EXE's to the trusted list in your Anti-virus software and/or firewall and or anywhere else Windows may be blocking executables.
    Thank you
    Don

  • "CRVS2010 Beta - viewer size issue

    Hello,
    I'm having an issue with the Crystal Reports viewer in a web application. I'm using visual studio 2010 with CRVS2010 Beta 2 installed. In design mode, the web form shows the report in full size as expected, but when I run the application and pull up the report, all I see is the Group Tree icon.
    I've tried setting the height and width on the viewer, but it doesn't seem to have any effect. I placed a border around the viewer so I could be sure it wasn't resizing, and it wasn't.
    I also have a button outside of the viewer that saves the report off as pdf, and that seems to be working just fine. The report saves with all the data and looks perfect.
    I've installed both the 32 bit and 64 bit runtimes on my development machine, but it did not help. I set the application to target 32 bit only, but no help. I set IIS App Pool to Classic mode, no help.
    This is an app that was converted from VS 2008 / .NET Framework 3.5 on a new development machine running VS 2010 & 4.0, so there was no previous version of CR installed.
    I'm running Windows 7 Ultimate N 64bit as OS.
    Here is the code for the viewer.
    <CR:CrystalReportViewer ID="crvPrintPOC" runat="server" AutoDataBind="true"
            BorderStyle="Inset" BorderWidth="2" BestFitPage="True" SeparatePages="True"
            DisplayToolbar="True" HasPageNavigationButtons="True"
            PrintMode="Pdf" HasCrystalLogo="True"
            ReportSourceID="CrystalReportSource1" Height="705px" Width="900px" />
    <CR:CrystalReportSource ID="CrystalReportSource1" runat="server">
            <Report FileName="reports\CPRPT-201 CB_Proof_Claim.rpt">
            </Report>
    </CR:CrystalReportSource>
    Thank You!

    Thank you for the suggestions Ludek and Adam,
    I tried deleting the viewer and adding it again, but still get the same result. You can view a screen capture at http://www.flickr.com/photos/54613233@N07/
    I also removed the property BestFitPage, but it didn't make any difference.
    Here is how the code looks now
    <CR:CrystalReportSource ID="CrystalReportSource1" runat="server">
         <Report FileName="reports\CPRPT-201 CB_Proof_Claim.rpt">
         </Report>
    </CR:CrystalReportSource>
    <CR:CrystalReportViewer ID="crvPrintPOC" runat="server"
            AutoDataBind="true" ReportSourceID="CrystalReportSource1" />
    Edited by: dav1_1 on Oct 6, 2010 8:56 PM

  • CRVS2010 Beta - Sax.DLL TypeLoadException

    I have seen a few threads on this form referencing an issue loading this DLL.  I have no references in my project to CR for VS2008, but am still receiving the issue.  I am building for x86 only. Can anyone assist?

    CRVS2010 Beta - Problems
    The issue is that when I run any ASP.Net page with an EntityDataSource on it, I reiceve a typeloadexception referencing SAX.dll.  9 out of 10 times I receive that exception, otherwise it runs fine.
    From the other thread, it appears that CrystalDecisions.PromptingClientSDK wants Sax.dll, which doesn't exist.
    Warning 1 Failed to load types from assembly 'CrystalDecisions.PromptingClientSDK, Version=14.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' so the assembly will be ignored.
    Could not load file or assembly 'Sax, Version=2.0.0.0, Culture=neutral, PublicKeyToken=5ddc67619681886c' or one of its dependencies. Impossibile trovare il file specificato. (file not found)
    Warning 2 Failed to load types from assembly 'BusinessObjects.Enterprise.Sdk, Version=14.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' so the assembly will be ignored.
    Could not load file or assembly 'BusinessObjects.Enterprise.Sdk.ZipLib.netmodule' or one of its dependencies. Impossibile trovare il modulo specificato. (Module not found)
    I manually added a reference to the CrystalDecisions.PromptingClientSDK and BusinessObjects.Enterprise.Sdk and rebuilt but get the same warning, due to "Sax" that I cant find nowhere.

  • Issue in adding Space to the existing Virtual Machine from added repository

    Hi,
    I'm facing issue in adding Space to the existing Virtual Machine (Guest OS) from added repository.
    Environment details :
    VM Server : /OVS => 130GB
    /OVS/935970F2CC2D4B4391701397517F1001/ => 512 GB
    Things I have done :
    •     I created a VM (Guest OS) in the VM Server with 120 GB
    •     After creating the VM (Guest OS) , When I tried adding a VIRTUAL DISK of size 150 GB , I got an error “Maximum available Disk space is only 10GB”.
    My query :
    •     Will I be able to add space to Existing VM from the added Repository ( /OVS/935970F2CC2D4B4391701397517F1001/ ) , whose system.img is stored in path /OVS/running_pool/34_rhel/ .
    Kindly help me out in this.
    Thanks in advance.
    -- Sri

    Hi all,
    I checked with Oracle on the above and got the info currently , the we can utilise only the space available in the existing repo and cannot extend to additional repo.
    Work around is : Clone it to the other repo , or Use Symbolic link .
    Thanks,
    Sri.

  • Error while adding space to the table space

    HI Gurus
    Can you please put some light on the error which i encountered while adding space to a tablespace
    ALTER TABLESPACE "GISR_NDEX" ADD DATAFILE '+DATA2' SIZE 2G;
    ALTER TABLESPACE "GISR_INDEX" ADD DATAFILE '+DATA2' SIZE 2G
    ERROR at line 1:
    ORA-01119: error in creating database file '+DATA2'
    ORA-17502: ksfdcre:4 Failed to create file +DATA2
    ORA-15041: diskgroup space exhausted
    Any suggestion is highly apprciated .
    Thanks

    Hello;
    The "diskgroup space exhausted" is key.
    Try creating smaller files or adding disk space.
    ASM Disk Group Unbalanced :
    http://surachartopun.com/2010/03/ora-15041-asm-disk-group-unbalanced.html
    Best Regards
    mseberg

  • CRVS2010 Beta 2 Pie chart legend displaying "_e_Total:1_n_pseudoloc_"

    Instead of displaying "Total" at the bottom of my pie chart legend I am getting the following text: "_e_Total:1_n_pseudoloc_"
    The values and percentages calculate correctly, but the label is unusual.

    Hello,
    I have the same problem with my pie chart. My report was fine before I did my update to CRVS2010 Beta 2. I was using crystal report 11.5.
    My report is really simple. I have a resume chart that you can drilldown. Each drilldown show the same chart for the selected
    item.
    I'm using Windows 7 Professionnel 64 bit in french (canada version).
    Visual Studio Version 10.0.30319.1
    Framework 4.0.30319

  • CRVS2010 Beta 2 - "Database Logon failed" Error, after Upgrade

    Hi,
    Generally: we are using the Crystal Reports in combination with a DataSet, that is filled during runtime and pushed to the report, using "SetDataSource". The Project is an ASP .NET 3.5 Project, published on our server.
    I upgraded my development-machine to CRVS2010 (installed both packages - the CRVS for VS 2010 and the runtime) last week and changed some fields in the Report. The DataSet was left unchanged. Everything is working well on my development-machine, but when I publish the Project to our server, I get an "Databse Logon failed" Error, when I want to create my Report. The CRVS2010 Beta 2 redist Runtime is installed on our server. Here is the code, we use:
    // create new Report
    var report = new Reports.repMyReport();
    // DataSource ds was filled correctly (we checked with export to XML
    report.SetDataSource(ds);
    // Set several Parameters to Report
    report.SetParameterValue("test", "test");
    // Export Report to PDF-Format and open in Browser
    report.ExportToHttpResponse(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, Response, false, "reportName.pdf");
    Response.End();
    The error I get is:
    Database logon failed.
    [COMException (0x8004100f): Database logon failed.]
       CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext) +0
       CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext) +260
    [LogOnException: Database logon failed.]
       CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e) +325
       CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext) +315
       CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext) +650
       CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToStream(ExportOptions options) +98
       CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToHttpResponse(ExportOptions options, HttpResponse response, Boolean asAttachment, String attachmentName) +98
       CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToHttpResponse(ExportFormatType formatType, HttpResponse response, Boolean asAttachment, String attachmentName) +124
       SprintBoxWeb.BuchungDruck.Page_Load(Object sender, EventArgs e) in D:\Projects\sprnt_erp\SprintBoxWeb\BuchungDruck.aspx.cs:32
       System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +14
       System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +35
       System.Web.UI.Control.OnLoad(EventArgs e) +99
       System.Web.UI.Control.LoadRecursive() +50
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627
    I already tried everything, found googling the web and/or searching this forum:
    e.g.: perform "verify Database" on all Reports and map the DataSet.xsd again to the Report
    Is that a known issue on the Beta and we should wait for the RC, or does anyone have an idea how to fix that one?
    This error is really annoying!
    Many thanks for your help.
    kind regards
    Reinhard

    Dear Ludek,
    Many thanks for your quick reply. Currently, I have to finish some other things. I will try your ideas next week and give you some feedback then, to keep you informed.
    best regards,
    Reinhard

  • CRVS2010 Beta - Unable to Install CR  Beta 2 for Visual Studio 2010.

    I am unable to install Crystal Reports for VS2010.  "Failed to update cache for execution."
    There is a similar thread (locked) with this problem.  (CRVS2010 beta 2 - error during install)
    I have tried everything from this tread, and everything else I can think of.  I am out of options. 
    I appreciate any help.
    Thanks,
    MF
    OS: Windows XP SP(3).
    Running on local drive with Administrator ID.
    (Tail of SETUPENGINE.LOG)
    17:27:38.765 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.rosette-4.0-core-32\0\
    17:27:38.796 Cache: copying files from: C:\cr4vs2010\dunit\tp.sap.ncs-4.0-core-32\
    17:27:38.843 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.sap.ncs-4.0-core-32\0\
    17:27:38.890 Cache: copying files from: C:\cr4vs2010\dunit\tp.curl.cpp-4.0-core-32\
    17:27:38.984 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.curl.cpp-4.0-core-32\0\
    17:27:39.031 Cache: copying files from: C:\cr4vs2010\dunit\tp.sap.nwrfc-4.0-core-32\
    17:27:39.546 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.sap.nwrfc-4.0-core-32\0\
    17:27:39.625 Cache: copying files from: C:\cr4vs2010\dunit\tp.ooc.dotnet-4.0-core-32\
    17:27:39.796 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.ooc.dotnet-4.0-core-32\0\
    17:27:39.937 Cache: copying files from: C:\cr4vs2010\dunit\tp.pkware.cpp-4.0-core-32\
    17:27:40.140 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.pkware.cpp-4.0-core-32\0\
    17:27:40.203 Cache: copying files from: C:\cr4vs2010\dunit\tp.rsa.crypto-4.0-core-32\
    17:27:40.453 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.rsa.crypto-4.0-core-32\0\
    17:27:40.640 Cache: copying files from: C:\cr4vs2010\dunit\tools.srvtools-4.0-core-32\
    17:27:40.765 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tools.srvtools-4.0-core-32\0\
    17:27:40.812 Cache: copying files from: C:\cr4vs2010\dunit\foundation.jdsr-4.0-core-nu\
    17:27:40.906 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\foundation.jdsr-4.0-core-nu\0\
    17:27:40.921 Cache: copying files from: C:\cr4vs2010\dunit\tp.azalea.fonts-4.0-core-32\
    17:27:40.953 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.azalea.fonts-4.0-core-32\0\
    17:27:40.968 Cache: copying files from: C:\cr4vs2010\dunit\tp.external.icu-4.0-core-32\
    17:27:41.968 Error: Could not move temp dest folder to dest folder.
    17:27:42.015 Error:   Temp dest folder: C:\Program Files\SAP BusinessObjects\InstallData\tmp\tp.external.icu-4.0-core-32
    17:27:42.078 Error:   Dest folder:    C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.external.icu-4.0-core-32\0\
    17:27:42.109 Error: Cache: error copying files to cache from: C:\cr4vs2010\dunit\tp.external.icu-4.0-core-32\ to: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.external.icu-4.0-core-32\0\
    17:27:42.156 Error: CacheDUs - failed to cache DUs.
    17:27:42.171 Error: Failed to update cache for execution.  Program will exit.
    (SETUPEXE.LOG)
    17:25:18 Unable to open file :c:\Temp\2010.10.23.17.25.18\setupexe.log
    17:25:18 Welcome to setup.exe!
    17:25:18 Launching SetupEngine.exe: "C:\cr4vs2010\setup.engine\SetupEngine.exe"
    17:25:18 SetupEngine.exe command line:  -engine "C:\cr4vs2010\setup.engine
    " -bootstrapper "C:\cr4vs2010
    " -l "c:\Temp\2010.10.23.17.25.18"

    Hi MF,
    I had a problem with changing my default temp folders installing another third party program, not any CR stuff.
    I changed my temp folders back to the defaults and then it worked. I tried changing the permissions for all users on c:\temp and c:\tmp but that didn't help either for the other program.
    Only way it would work was to use the default temp folder structure.
    Try changing yours back to c:\User\appdata\local\temp
    Clear the temp folder out first and try again.
    Something, not sure if it was Windows or anti-virus or the firewall was blocking access. Odd that it gets part way so likely some third party dependency on that file doesn't like or get to your c:\temp folder.
    Thanks
    Don

  • CRVS2010 Beta - Hyperlinks don't work in textobjects

    I just wanted to report a bug that will hopefully get fixed in the November version of Crystal Reports for Visual Studio 2010.
    HyperLinks do not work!  they cut off any url with a querystring in it.
    Note: I can create one in five seconds in the versions of CR that comes with both Visual Studio 2005 and 2008. 
    Dave.
    Subject modified as per the sticky post at the top of this forum; [Crystal Reports for Visual Studio 2010 Beta - read before posting|Crystal Reports for Visual Studio 2010 Beta - read before posting;
    Edited by: Ludek Uher on Sep 22, 2010 4:13 PM

    I believe this is the same issue as in [CRVS2010 Beta - Problem with HyperLink and Parameters|CRVS2010 Beta - Problem with HyperLink and Parameters;. The issue is also reported in [this|Re: CRVS2010 Beta - Hyperlink translator dropping parm; thread.
    I am not able to reproduce the issue with URL to Yahoo, or Google, etc. If you can provide a publicly available URL that duplicates the issue, I will re-test.
    Ludek

  • RH8 After conversion, added space after conditional tag phrase

    We just installed RoboHelp 8. After converting my 3 projects from RH7 to RH8, the system added spaces in between words of a condtional build phrase. That's great since it's much easier to see the words -- that was an improvement over version 7.
    However, it's also adding a space after the conditional build phrases, which is incorrect. It adds a space before a comma, adds a space before a period if the conditional build phrase occurs at the end of the sentence, etc. But it doesn't look like it does this in every case...I'm not sure why it did this, but it only happened after the conversion to 8.
    The generated help appears as in the example below. Note the space before the period in the first sentence and the space before the comma in the second sentence. It has done this on quite a few pages.
    Customer Definition Detail
    This page allows you to add a new customer or to edit an existing customer . If you are adding a customer , you must complete the detail information and then save it.
    Tried to upload the example of conditional build phrase, but it's not letting me.
    Thank you in advance for any help you can offer. This would be a lot to manually repair, so I'm hoping someone knows of a way to fix this using a setting.

    Thanks for your posts.
    After trying everything I could think of the only thing that resolved the issue was replacing any instance of back-to-back conditional text followed by any punctuation with two sentence exactly the same except for the conditional choice.
    For example, the original sentence (color indicates conditional build tag):
         For customersmembers, this field indicates transaction limits.
    would be changed to these two sentences:
         For customers, this field indicates transaction limits.
        For members, this field indicates transaction limits.
    I'll submit this as a RoboHelp 8 bug in the forums (if it hasn't already been submitted).

  • CRVS2010 Beta - Cannot find documentation on what needs to be installed

    My question is very elementary but I do not see anything in the release notes, etc. that tells me which of the 3 install files I need to iinstall or do I need to install all of them.
    1 - SAP Crystal Reports, version for Visual Studio 2010
    2 - SAP Crystal Reports runtime engine for .NET Framework 4 (32-bit)
    3 - SAP Crystal Reports runtime engine for .NET Framework 4 (64-bit)
    I want access to the WPF component in VS 2010 on a Win 7 64bit machine
    Do I install all 3?? In what order? 1 - 2 - 3 as I've shown?
    I have Crystal 2008 installed on my machine. Must I uninstall it to use the Crystal VS 2010 beta on that machine.
    To date I tried installing just #1 above. I went into my VS 2010 selected the WPF and it blew up VS 2010, I tried doing the same with Winform and it also took out VS 2010.
    I have since uninstalled everything. Could someone explain the procedure(s) for making the beta available to VS 2010 with a little more detail.
    Thanks

    Hi,
    You might want to check this [thread|Re: CRVS2010 Beta - about downloading file].
    Thanks,
    Saurabh

Maybe you are looking for

  • FTP to SFTP.

    Hi, My application is using ftp to connect to the server. but now it is going to change to sftp. For that I am not able to get what are the things in need to change in my ftp program to make it support for sftp. The following is the ftpbean class and

  • External monitor blurry image rMBP 2012

    Hey guys! I have 2012 rMPB which works perfectly and i am connecting it to my 22" Benq monitor via MiniDisplayPort to VGA connector (monitor only has VGA). Image on the external monitor is really bad, it looks blurry, not sharp enough and brightness

  • GeForce 7800GT Xorg Driver

    I've tried using the "nv" driver for my GeForce 7800GT (PCI-E) but it simply starts up and freezes on me with a corrupt image of my fluxbox desktop. Vesa driver works fine.

  • [代发帖子]10.2.0.4.0版本rac 报IPC Send timeout detected.Sender 错误问题

    以下为代网友发帖,内容为 环境:db:10.2.0.4.0 system:aix 6.1 请各位大师帮忙确定是什么原因导致的 node1 Wed Aug 22 09:59:17 2012 IPC Send timeout detected.Sender: ospid 25821502 Receiver: inst 2 binc 1412232506 ospid 27066946 Wed Aug 22 09:59:17 2012 IPC Send timeout detected.Sender:

  • How can I open attachments and downloads NOW?? Pleas help!!!!

    You can't open the application "Adobe Reader 7.1.0" because PowerPC applications are no longer supported.