Quantcast
Channel: SCN : Discussion List - SAP Crystal Reports, version for Visual Studio
Viewing all 3636 articles
Browse latest View live

How To Clear and Reload WPF Crystal ReportViewer

$
0
0

We are using a very simple implementation of the WPF Crystal Reports Report Viewer in VB.Net 2010. One of my grids contain the Crystal Reports viewer; the visibility of that grid is controlled by one of the Ribbon tabs in the application. We are loading a ReportDocument, asking it for all of the connection requirements, and then setting all needed data sources, prompting data, etc,  then attaching to the viewer as the "ReportViewer.ViewerCore.ReportSource = ReportDocument", then making the grid containing the Report Viewer Visable.  This is working fine, for one report; but our business flow dictates that we "Clear" the ReportViewer after we are finished viewing a report; leaving it "blank" or be ready to load another (different) report (new report document) on demand. As it stands this is throwing all kinds of errors and we are not making much headway to solve this issue. There does not seem to be many posts regarding how this is done. Any suggestions?

 

  <Grid Name="Grid_TabItemReportPreview"

     Grid.Row="1"

     Margin="0,0,0,0"

     Background="#FFCDD9EB"

     Visibility="{Binding ElementName=TabItemReportPreview, Path=IsSelected, Converter={StaticResource IsSelectedToVisibilityConverter}}">

   <Grid.RowDefinitions>

    <RowDefinition Height="*"></RowDefinition>

    <RowDefinition Height="35"></RowDefinition>

   </Grid.RowDefinitions>

   <cr:CrystalReportsViewer Name="MyCrystalReportsViewer"

          Margin="5,5,5,5"

          ShowLogo="False"

          ShowOpenFileButton="True"

          Background="LightBlue"

          Foreground="Black"

          UseLayoutRounding="True"

          Visibility="{Binding ElementName=Grid_TabItemReportPreview, Path=Visibility}"

          BorderBrush="LightSteelBlue">

   </cr:CrystalReportsViewer>

  </Grid>


Prerequisite could not be found for bootstrapping

$
0
0

Hello,

 

I installed the crystal report V13.0.5 below (upgrading from V13.0.4 to V13.0.5

3.PNG

 

I copied the files below to C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bootstrapper\Packages\Crystal Reports for .NET Framework 4.0

1.PNG

 

when I click on the Prerequisite button in the publish tab in VS 2010, there is an exclamation mark next to "SAP...."

(Prerequisite could not be found for bootstrapping)

 

2.PNG

 

it was working fine when I had V13.0.4

Now when I click publish, Visual studio does not copy CRRuntime.. to the Publish folder.

Please help.

'No printer device found'

$
0
0

Dear Support,


When the user 'X' is trying to print documetns she is receiving the error message 'No printer device found'.

 

For information, we already tried to change her default printer locally, restart her computer and citrix but it had no impact.

 

Thank you in advance.



Best Regards,

Med

Vista previa crystal 13.0.5 y explorer 10

$
0
0

La vista previa en aplicación web con crystal 13.0.5 y  explorer 10 muestra rayas, como en el ejemplo.

Alguna solución?

Crystal Reports for .NET Database Logon Failed in IIS 7.5 64 Bits

$
0
0

I have a problem with Crystal Reports for .NET in IIS 7.5 in Windows 7 64 Bits System Operational. When I change my Application Pool to Use 32 Bits its run.

 

CrystalDecisions.CrystalReports.Engine.LogOnException: Database Logon Failed. ---> System.Runtime.InteropServices.COMException: Database logon failed.

   at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext)

   at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)

   --- End of inner exception stack trace ---

   at CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e)

   at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)

   at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)

   at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToStream(ExportOptions options)

   at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToHttpResponse(ExportOptions options, HttpResponse response, Boolean asAttachment, String attachmentName)

   at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToHttpResponse(ExportFormatType formatType, HttpResponse response, Boolean asAttachment, String attachmentName)

 

Best regards,

Crystal Reports in deployed environment Logon Failed

$
0
0

I have read about every blog and tried every solution but to no avail.  This is my code:

 

Imports Microsoft.VisualBasic

Imports CrystalDecisions.CrystalReports.Engine

Imports CrystalDecisions.Shared

 

 

Public Class cReportSetup

    Dim crtableLogoninfos As New TableLogOnInfos()

    Dim crtableLogoninfo As New TableLogOnInfo()

    Dim crConnectionInfo As New ConnectionInfo()

    Dim CrTables As Tables

    Dim CrTable As Table

    Dim TableCounter

    Dim o As New aspdata.cData

    Dim boMainPropertyBag As New DbConnectionAttributes()

    Dim boInnerPropertyBag As New DbConnectionAttributes()

 

 

    Public Function configureCR(ByRef reportName As String) As ReportDocument

        With crConnectionInfo

            If o.dbInstance Is Nothing Or o.dbInstance.Length = 0 Then

                .ServerName = o.dbServer & o.dbPort

            Else

                .ServerName = o.dbServer & "\" & o.dbInstance & o.dbPort

            End If

 

 

            .DatabaseName = "ASP"

            .UserID = o.dbUser

            .Password = o.dbPassword

            .IntegratedSecurity = False

            .Type = ConnectionInfoType.SQL

            .AllowCustomConnection = True

        End With

 

 

 

 

        'Set the attributes for the boInnerPropertyBag

        boInnerPropertyBag.Collection.Add(New NameValuePair2("Auto Translate", "-1"))

        boInnerPropertyBag.Collection.Add(New NameValuePair2("Connect Timeout", "15"))

        boInnerPropertyBag.Collection.Add(New NameValuePair2("Data Source", crConnectionInfo.ServerName))

        boInnerPropertyBag.Collection.Add(New NameValuePair2("DataTypeCompatibility", "0"))

        boInnerPropertyBag.Collection.Add(New NameValuePair2("General Timeout", "0"))

        boInnerPropertyBag.Collection.Add(New NameValuePair2("Initial Catalog", "ASP"))

        boInnerPropertyBag.Collection.Add(New NameValuePair2("Integrated Security", "False"))

        boInnerPropertyBag.Collection.Add(New NameValuePair2("Locale Identifier", "1033"))

        boInnerPropertyBag.Collection.Add(New NameValuePair2("MARS Connection", "0"))

        boInnerPropertyBag.Collection.Add(New NameValuePair2("OLE DB Services", "-5"))

        boInnerPropertyBag.Collection.Add(New NameValuePair2("Provider", "SQLNCLI10"))

        boInnerPropertyBag.Collection.Add(New NameValuePair2("Tag with column collation when possible", "0"))

        boInnerPropertyBag.Collection.Add(New NameValuePair2("Trust Server Certificate", "0"))

        boInnerPropertyBag.Collection.Add(New NameValuePair2("Use DSN Default Properties", "False"))

        boInnerPropertyBag.Collection.Add(New NameValuePair2("Use Encryption for Data", "0"))

 

 

        'Set the attributes for the boMainPropertyBag

        boMainPropertyBag.Collection.Add(New NameValuePair2("Database DLL", "crdb_ado.dll"))

        boMainPropertyBag.Collection.Add(New NameValuePair2("QE_DatabaseName", "ASP"))

        boMainPropertyBag.Collection.Add(New NameValuePair2("QE_DatabaseType", "OLE DB (ADO)"))

 

 

        'Add the QE_LogonProperties we set in the boInnerPropertyBag Object

        boMainPropertyBag.Collection.Add(New NameValuePair2("QE_LogonProperties", boInnerPropertyBag))

        boMainPropertyBag.Collection.Add(New NameValuePair2("QE_ServerDescription", crConnectionInfo.ServerName))

        boMainPropertyBag.Collection.Add(New NameValuePair2("QE_SQLDB", "True"))

        boMainPropertyBag.Collection.Add(New NameValuePair2("SSO Enabled", "False"))

        crConnectionInfo.Attributes = boMainPropertyBag

 

 

        Dim cryRpt As New ReportDocument

        cryRpt.Load(reportName)

        setReportDb(cryRpt, False)

        Return cryRpt

    End Function

 

 

    Private Sub setReportDb(ByRef report As ReportDocument, ByVal subR As Boolean)

 

 

        'Loop through each sub report in the report and apply the LogonInfo information

        'There seems to be an issue with subreports causing the app to crash. Solution for now is to set your log on info for the subreports first and then set the main report log on info.

        Dim sSubReportName As String

        Dim objTmpReport As ReportDocument

 

 

        For Each ReportObject In report.ReportDefinition.ReportObjects

            If ReportObject.GetType().Equals(GetType(SubreportObject)) Then

                sSubReportName = ReportObject.SubreportName

                objTmpReport = report.OpenSubreport(sSubReportName)

                setReportDb(objTmpReport, True)

            End If

        Next

 

 

        report.SetDatabaseLogon(o.dbUser, o.dbPassword, crConnectionInfo.ServerName, "ASP")

        For Each dsc As InternalConnectionInfo In report.DataSourceConnections

            ' Must set the UseDSNProperties flag to True before setting the database connection otherwise the connection does not work    

            If (dsc.LogonProperties.ContainsKey("UseDSNProperties")) Then

                dsc.LogonProperties.Set("UseDSNProperties", True)

            End If

            dsc.LogonProperties.Set("Data Source", crConnectionInfo.ServerName)

            dsc.SetConnection(crConnectionInfo.ServerName, "ASP", o.dbUser, o.dbPassword)

            Dim prt As String = ""

            For i As Integer = 0 To dsc.LogonProperties.Count - 1

                Dim nvp As NameValuePair2 = dsc.LogonProperties.Item(i)

                prt = prt & "Name=" & nvp.Name & ", Value=" & nvp.Value & System.Environment.NewLine

            Next

            MsgBox(prt)

        Next

 

 

        'Loop through each table in the report and apply the LogonInfo information

        CrTables = report.Database.Tables

        For Each Me.CrTable In CrTables

            crtableLogoninfo = CrTable.LogOnInfo

            crtableLogoninfo.ConnectionInfo = crConnectionInfo

            CrTable.ApplyLogOnInfo(crtableLogoninfo)

            Try

                CrTable.Location = CrTable.Name

            Catch ex As Exception

                MsgBox(ex.ToString)

                Exit Sub

            End Try

        Next

 

 

        If Not subR Then

            report.Refresh()

        End If

    End Sub

 

 

End Class

 

This is the prompts I am getting:

 

 

 

I noticed is that for some reason the datasource is picking up a database instance that is incorrect in the deployed environment.  Not sure where that comes from....  I have a database instance in my development environment but it is different.

 

Any help will be appreciated...

connecting to an old access (pre 2003) database with security.mdw file for login authentication

$
0
0

Hi

 

I am new to the site and crystal reports.  I am using crystal reports for vs 2010 and programming in c#

 

I have an old database which has user login credentials stored in a separate database (workgroup security?). I can connect to it via c# by passing the login details to the .mdw file and the main database in the connection string.

 

I can also (in design view) connect to the database and produce a report.

 

However when I try running the report at runtime, I am being asked for login details... and even after providing the details is does not connect..

 

I connect using this method in design time:

 

settings

 

 

 

but i cannot find any information on how to connect at runtime...  Where do I set the session username, session password and system database?

 

my code to connect looks a bit like this:

 

 

          ReportDocument cryRpt = new ReportDocument();

          TableLogOnInfos crtableLogoninfos = new TableLogOnInfos();

          TableLogOnInfo crtableLogoninfo = new TableLogOnInfo();

          ConnectionInfo crConnectionInfo = new ConnectionInfo();

          Tables CrTables;

 

 

            string path = Application.StartupPath;

 

 

            cryRpt.Load(path + "\\" + report);

 

 

           crConnectionInfo.UserID = "someuser";

            crConnectionInfo.Password = "password";

            crConnectionInfo.ServerName = "z:\\main_database.mdb";

          

            CrTables = cryRpt.Database.Tables;

            foreach (CrystalDecisions.CrystalReports.Engine.Table CrTable in CrTables)

            {

                crtableLogoninfo = CrTable.LogOnInfo;

                crtableLogoninfo.ConnectionInfo = crConnectionInfo;

                CrTable.ApplyLogOnInfo(crtableLogoninfo);

            }

 

 

 

 

            if (parameter != "")

                cryRpt.SetParameterValue(parameter, value);

 

           crvMain.ReportSource = cryRpt;

           

          

I am losing the will to live trying to find the solution to this, can anyone help??

 

 

 

Cheers

problem loading images with crystal

$
0
0

Hello,

 

My name is Jose and I am a programmer, currently doing some stress tests to verify the efficiency and cost of Telerik versus Crystal ... One of the test is loading images in reports.

 

We have encountered a problem with Crystal when reporting simple images. As an example, we have a report that samples only the logo of the pupils in a school.


The problem is showing bad pictures, they seem empty (the images are properly stored in the database because we can display on our website and also using telerik reporting). We work with Visual Studio 2008, data is read from a database SQL server 2008, and the images are stored in a field of type "image".

 

We searched for information on the Internet and there are not many viable practical solutions in this regard. Many people advocate storing the images on a server and use a physical path to locate the images, but this solution is not valid for us. Can you help?.

 

Many thanks and best regards,


does crystal reports need runtime license for deployment on Windows server 2008?

$
0
0

Hello,

I'm devoling crystal reports under visual studio 2010. I'm asking if i need to purchase a runtime license to run these reports in production environment that run under Windows 2008 Server R2 or I need only to install CRRuntime_64bit_13_0_4.msi ?


Thanks in advance for your help.

HowTo Replace ReDistributable Crystal Reports Visual Studio 2005 To VS-2010

$
0
0

I am working on a legacy Visual Studio (VS) 2005 app on WinXP that uses Crystal Reports & it needs to install

 

'C:\Program Files\Common Files\Merge Modules\CrystalReportsRedist2005_x86.msm'. This app needs to be converted to a 32-bit VS-2010 on WinXP. (The long term goal is to port the app to Windows 7. However, we 1st want to upgrade it to VS-2010 on WinXP & test it there, before we port it to Windows 7).

 

1) How many Release Notes documents do you have on this particular issue?

2) From all of your different installation options, which one do I need or the least painful (to replace my .msm file).

 

Thank you.

Visual Studio 2010 problem

$
0
0

I've visual studio 2010 (with sp1), platform windows 7 (64bit).

 

I've used crystal reports and without problem unto installing vs2010 sp1.

After then I've installed/uninstalled SAP Crystal Report, version for Visual Studio 2010 several time.

Reason of uninstalling is that I've got error message "Invalid key" several times , or crystal report templates have been disappeared.

 

Now my problem is that I can't add new crystal report to visual studio project because

there are not crystal report templates in reporting templates (visual studio --> add new item-->installed templates-->reporting)

I can modify earlier made reports.

 

That template disappeared, I don't know why.

 

Now I've installed following programs:

SAP Crystal Report runtime engine for net framework 4(32bit)

SAP Crystal Report runtime engine for net framework 4(64bit)

SAP Crystal Report, version for Visual Studio 2010 13.0,4

SAP Crystal Report, version for Visual Studio 2010 13.0,0

 

What should I do that I could add crystal report to project.

Regards

 

Matti Niskasaari

CRYSTAL Report 2008 SP4 Ref to CR XI R2 Developer 2006

$
0
0

Hi Team

 

We are currently using CRYSTAL Report 2008 SP4 to develop report in our application and make a reference of crystal reports dll. Now we are going to use the CR XI R2 Developer 2006. My question is if we use CR XI R2 in our application to compile and build the app, and the deployment machine [UAT\PROD] is having CRYSTAL Report 2008 SP4, what could be the possible bug thrown by the system?.

WPF Crystal Report Viewer log-in database without prompting the user

$
0
0

Visual Studio 2010

SAP Crystal Reports, version for Visual Studio 2010 (13.0.0.99)

 

In older version of CR Runtime, I used setLogonInfo to specify database login information.

 

Would anyone tell me how can I supply the login information to Crystal Report when I use WPF Crystal Report Viewer so that it will not prompt the user to enter login name and password?

 

Thanks.

Prompting for parameters opens in IE

$
0
0

Hi there

 

I hope someone is able to assist with a problem we have been having for the last 2 years:

 

Certain of our machines are XP and other Windows 7 - our application uses Crystal reports which works well on XP. On the Win 7 machines the Prompting screen for parameters now opens with IE and no longer passes parameters to the reports to run.

 

I have Crystal 2008 which I use to develope reports and all works well in the report designer but when accessed by the application on a Windows 7 machine nothing works. I do not have access to the application source code but think it is using the runtime files installed with Business Objects XI.

c:\program Files (x86)\Business Objects\Common\3.5\

 

I think it has something to do with security settings but cannot find any solutions from Microsoft

 

The only reference I have found to this problem was a discussion/message posted on this forum :

http://scn.sap.com/message/13392151#13392151 - I have tried this process as detailed without any success on various machines

 

Any help would be really appreciated.

 

Thanks

Problems with WPF Crystal Reports Viewer on Citrix Client

$
0
0

Hi everyone,

 

my customer currently uses our product on a citrix client ( as far as I know WinServer 2003). It appears that if a user tries to open an .rpt-file in the WPF Crystal Reports Viewer there is a Xerces Panic Error (unfortunatly without any more details, besides: "could not load a transcoding service"). Trying the same with an administrator account does not produce this error.

 

Are there any special folders a user using the viewer needs permissions to?

 

Do you have other ideas?

 

What I already tried was reviewing the keys in the registry beneath HKEY_CLASSES_ROOT\MIME\Database\Charset , but all were valid. (Found that this could make trouble...)

 

Thanks in advance,

Janina


VS 2012 with Crystal Reports 13 having report.load(strFileName) issue

$
0
0
VS 2012 with Crystal Reports 13, Web reports taking over a minute to load some times and not others. 
Code:

        using (ReportDocument repDoc1 = new ReportDocument())

        {

            DateTime dteStart = DateTime.Now;

            dteDoneFlag = dteStart;

            repDoc1.Load(strFileName);

            DateTime dteEnd = DateTime.Now;

          storeDelay(fcnDelayed(  dteStart,dteEnd));

     ...

     }

 

public static string fcnDelayed( DateTime dteStart, DateTime dteEnd)
        {
            TimeSpan strDiff = (dteEnd - dteStart);
            string strMinutes = strDiff.Minutes.ToString();
            string strSeconds = strDiff.Seconds.ToString();
            string strMilSeconds = strDiff.Milliseconds.ToString();
            return strMinutes + "Min" + strSeconds + "Sec" + strMilSeconds + "MS since: " + dteStart;
        }

 

Example times:

1Min32Sec141MS since: 4/10/2013 10:27:36 AM

0Min2Sec125MS since: 4/10/2013 10:27:35 AM

0Min0Sec984MS since: 4/10/2013 10:14:37 AM

1Min38Sec516MS since: 4/10/2013 10:07:23 AM

1Min39Sec672MS since: 4/10/2013 10:07:22 AM

0Min0Sec312MS since: 4/10/2013 9:45:08 AM

0Min0Sec187MS since: 4/10/2013 9:45:07 AM

0Min0Sec296MS since: 4/10/2013 9:45:03 AM

0Min0Sec171MS since: 4/10/2013 9:43:00 AM

1Min4Sec219MS since: 4/10/2013 9:36:41 AM

1Min5Sec187MS since: 4/10/2013 9:36:40 AM

1Min36Sec875MS since: 4/10/2013 9:34:42 AM

1Min38Sec578MS since: 4/10/2013 9:34:41 AM

1Min37Sec906MS since: 4/10/2013 9:34:41 AM

1Min39Sec735MS since: 4/10/2013 9:34:39 AM

1Min36Sec31MS since: 4/10/2013 9:06:46 AM

1Min37Sec172MS since: 4/10/2013 9:06:45 AM

0Min1Sec265MS since: 4/10/2013 9:00:55 AM

0Min1Sec328MS since: 4/10/2013 9:00:54 AM

1Min25Sec781MS since: 4/10/2013 9:00:19 AM

1Min26Sec891MS since: 4/10/2013 9:00:18 AM

 

I tried every solution I could find, to include subreport, printer, and running a throw away report, but no consistant solution was found.  Threading one report first seems to help the latter most of the time but still undependable. 

 

Your help will be greatly appreciated.

Hugh

Programmatically Set Sort Columns in CR2010 API

$
0
0

The Crystal Report has two Sort Fields originally at design
time. However, it might have more than two Sort fields needed at run time, for
example, 5 Sort Fields. In the previous VB6 with CRAXDRT, where its
RecordSortFields.Add function will be doing the job. But in the CR2010, it
won’t be allowed doing so. Do you know which alternative way could accomplish
this job?

Need to pass multiple values in a parameter to a webservice method from Crystal 2011

$
0
0

Hi,

 

  We are working in Crystal Reports 2011 (and also 2008) and we have a need to pass multiple values in a single parameter to a webservice method.

 

  I have searched the web for results and I cannot find a suitable answer.  Here is what I tried:

 

 

  This is a c# .Net  webservice.  If I set the method parameter to a string type, when the following parameter is passed, here is what I get:

 

  Pass in:  stringA&stringB&stringC

 

  In the webmethod:  the value is: stringA

 

  I've tried changing the method parameter to a string array (string[]).  Same result.

 

  If you view this parameter from within the Crystal Report, the parameter is shown as a Static, with Allow Custom Values = true, and Allow Multiple values = false (and greyed out).

 

  Since this parameter is created when the datasource is selected, I'm not sure how to get the results needed.

 

  Also, just as a test, I changed the data to: stringA+stringB+stringC, and this was passed to the webservice.

 

  Another attempt was to do something like the following:    {?parameters.AgingByProgramReport.strOperatingGroup.string} = Replace ({?parameters.AgingByProgramReport.strOperatingGroup},'&', '+')

 

  Not sure if this is even possible or would work prior to passing the data to the webservice, but I couldn't figure out the syntax or how to make this happen prior to the webservice call.

 

 

  Has anyone been able to figure out how to make this work ?  This is important to a number of reports that will be built this way and this is one of the key outstanding questions.  If we could pass the string or string array, that would do the trick.

 

  Thanks for the help.

 

Rick

How can I change the string connection from my "Report1" in runtime ?

$
0
0

Hi,

 

1) I have created a "Report1" using OLE DB(ADO) "Windows Authentication"

2) My program in C# execute/call the "Report1" and works perfect (in local DB - SQL EXPRESS)  "Windows Authentication"

 

Know I need to deploy in a network (using "SQL Server Authentication"), where I have a client/server environment but with "DB autentication".

 

How can I change the string connection from my "Report1" in runtime ?

 

Thanks in advance and best regards,

 

Luis

 

*** Current Implementation ***

    public partial class FrmReporte001 : Form

    {

        public FrmReporte001(String emp, String dep, String fil)

        {

            InitializeComponent();

            ConfigurarMICrystalReports(emp, dep, fil);

        }

        // variable emp is company

         // variable dep is department

         // varialbe fil is a string filter like ({field1} = "hola" and "field2" = "hello")

       #region  Configurar mi Crystal Reportl

          private void ConfigurarMICrystalReports(String emp, String dep, String fil)

        {

            this.CrvReporte001.SelectionFormula = fil.ToString();

            ParameterFields myparamFields = this.CrvReporte001.ParameterFieldInfo;

            SetCurrentValuesForParameterField(myparamFields, PARAMETER_FIELD_NAME001, emp.ToString());

            SetCurrentValuesForParameterField(myparamFields, PARAMETER_FIELD_NAME002, dep.ToString());

        }

 

        private void SetCurrentValuesForParameterField(ParameterFields myparamFields, string myParamName, string varstrparam)

        {

            ParameterValues mycurrentParamValues = new ParameterValues();

            ParameterDiscreteValue myParamDiscreteValue = new ParameterDiscreteValue();

            myParamDiscreteValue.Value = varstrparam.ToString();

            mycurrentParamValues.Add(myParamDiscreteValue);

 

            try

            {

                ParameterField parameterField = myparamFields[myParamName];

                parameterField.CurrentValues = mycurrentParamValues;

            }

            catch

            {

                Console.WriteLine("Error al ejecutarse...");

            }

        }

        #endregion

    }

Opened report page number not changed if you go by backspace.

$
0
0

Open a report in the report viewer and then goto page 2 and press backspace. you will reach to page 1 but the page number showing in the viewer is still page 2.

 

Please look in to this issue, if you have any solution.

 

Thank you

Hrushikesh Patel

Viewing all 3636 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>