<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: Crystal Report VB.net Application  - Client PC Issues in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277354#M4599596</link>
    <description>&lt;P&gt;I switched everything to 64 bit and I am still seeing Error # 2 above. When I install the app on my PC it works just fine, but I had just assumed that was because I have the SDK for VS installed on my pc. I've never added a c++ runtime to app dependencies before, do you know what steps to take to do that?&lt;/P&gt;</description>
    <pubDate>Mon, 19 Oct 2020 20:36:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2020-10-19T20:36:39Z</dc:date>
    <item>
      <title>Crystal Report VB.net Application  - Client PC Issues</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaq-p/12277347</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;I created my second Crystal Reports application and I am having issues getting it to work on a clients PC. Based on what I learned from my first application, I know that I needed to install the runtime on the clients PC, which I did. When I run the app, nothing happens. No exception is thrown or anything. I see the mouse wait cursor come up (the spinning windows cursor) for about 5 seconds and then nothing happens. The odd thing is that I am able to run the code from my PC just fine when I use the msi setup file I created. I have no idea where to look to figure this out... Any help would be appreciated.&lt;/P&gt;
  &lt;P&gt;Thanks,&lt;/P&gt;
  &lt;P&gt;Chris Kretman&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 17:24:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaq-p/12277347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-10-16T17:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report VB.net Application  - Client PC Issues</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277348#M4599590</link>
      <description>&lt;P&gt;When you installed the .msi on the client machine, were you logged in with Administrator rights?  Also, does your app do any logging that might help you diagnose the issue?&lt;/P&gt;&lt;P&gt;-Dell&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 17:47:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277348#M4599590</guid>
      <dc:creator>DellSC</dc:creator>
      <dc:date>2020-10-16T17:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report VB.net Application  - Client PC Issues</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277349#M4599591</link>
      <description>&lt;P&gt;Yes it was installed with admistrator rights. It doesn't do any logging, I only have error handling in it. Instead of running on the client PC I attempted to run it on our server where my first Crystal report application is running. That did kick off the error handling and sent me an email with the error details. please see below. I have also posted some of my code, the last line being 105, which the error references.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;     'connect the viewer to the data tables
            If CrystalReportViewer2.LogOnInfo IsNot Nothing Then
            Dim tlInfo As TableLogOnInfos = CrystalReportViewer2.LogOnInfo
            For Each tbloginfo As TableLogOnInfo In tlInfo
                tbloginfo.ConnectionInfo = ConnectionInfo
            Next
        End If






            'fill the subreport data tables
            For Each subrep As ReportDocument In rpt.Subreports
                For Each table As Table In subrep.Database.Tables
                    If table.Name &amp;lt;&amp;gt; "Sheet1_" Then
                        table.LogOnInfo.ConnectionInfo = ConnectionInfo
                        table.ApplyLogOnInfo(table.LogOnInfo)
                    End If
                Next
            Next






            'Update the data on the report
            rpt.VerifyDatabase()
            rpt.Refresh()
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;There was an error Processing PickSlipPrint. Error:
System.InvalidCastException: Unable to cast COM object of type
'CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass' to interface
type 'CrystalDecisions.ReportAppServer.Controllers.ISCRReportSource'. This
operation failed because the QueryInterface call on the COM component for the
interface with IID '{31E7715A-8AD0-4D1C-958E-C1BE0A6F2D0C}' failed due to the
following error: No such interface supported (Exception from HRESULT:
0x80004002 (E_NOINTERFACE)).&lt;/P&gt;&lt;P&gt;  at System.StubHelpers.StubHelpers.GetCOMIPFromRCW(Object
objSrc, IntPtr pCPCMD, IntPtr&amp;amp; ppTarget, Boolean&amp;amp; pfNeedsRelease)&lt;/P&gt;&lt;P&gt;  at
CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Refresh() &lt;BR /&gt;
  at
CrystalDecisions.ReportSource.EromReportSourceBase.Refresh(RequestContext
reqContext) &lt;BR /&gt;
  at CrystalDecisions.CrystalReports.Engine.FormatEngine.Refresh(RequestContext
reqContext) &lt;BR /&gt;
  at CrystalDecisions.CrystalReports.Engine.ReportDocument.Refresh()
&lt;BR /&gt;
  at
CrystalReportsApplication1.Form1.CrystalReportViewer1_Load(Object sender,
EventArgs e) in C:\Users\chris.kretman\source\repos\CrystalReportsApplication1\CrystalReportsApplication1\Form1.vb:line
105&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 19:10:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277349#M4599591</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-10-16T19:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report VB.net Application  - Client PC Issues</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277350#M4599592</link>
      <description>&lt;P&gt;I went through the event viewer on the client PC and found two critical errors, which is concerning because I have all of my code inside a try catch block and when it throws an exception it should be emailing me.&lt;/P&gt;&lt;P&gt;The Error messages are below. I understand the System.IO.FileNotFoundException, but not Error #1.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Error #1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Faulting application name:
CrystalReportsApplication1.exe, version: 1.0.0.0, time stamp: 0x5f89b138&lt;/P&gt;&lt;P&gt;Faulting module name: KERNELBASE.dll,
version: 10.0.19041.572, time stamp: 0x979ddb1d&lt;/P&gt;&lt;P&gt;Exception code: 0xe0434352&lt;/P&gt;&lt;P&gt;Fault offset: 0x00129ab2&lt;/P&gt;&lt;P&gt;Faulting process id: 0x524c&lt;/P&gt;&lt;P&gt;Faulting application start time:
0x01d6a3ce8070d14a&lt;/P&gt;&lt;P&gt;Faulting application path: C:\Program Files
(x86)\Kage Innovation\PickSlipPrintSetup\CrystalReportsApplication1.exe&lt;/P&gt;&lt;P&gt;Faulting module path:
C:\WINDOWS\System32\KERNELBASE.dll&lt;/P&gt;&lt;P&gt;Report Id:
82515458-4bfb-4485-b849-5a9ae284102e&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Error #2:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Faulting package full name: &lt;/P&gt;&lt;P&gt;Faulting package-relative application ID: &lt;/P&gt;&lt;P&gt;Application: CrystalReportsApplication1.exe&lt;/P&gt;&lt;P&gt;Framework Version: v4.0.30319&lt;/P&gt;&lt;P&gt;Description: The process was terminated due
to an unhandled exception.&lt;/P&gt;&lt;P&gt;Exception Info:
System.IO.FileNotFoundException&lt;/P&gt;&lt;P&gt;  at
CrystalDecisions.Shared.SharedUtils..cctor()&lt;/P&gt;&lt;P&gt;Exception Info: System.TypeInitializationException&lt;/P&gt;&lt;P&gt;  at
CrystalDecisions.Shared.SharedUtils.get_CurrentControl()&lt;/P&gt;&lt;P&gt;  at
CrystalDecisions.Shared.SharedUtils.GetEffectiveCulture()&lt;/P&gt;&lt;P&gt;  at
CrystalDecisions.Shared.LocaleManager..ctor()&lt;/P&gt;&lt;P&gt;  at
CrystalDecisions.Windows.Forms.CrystalReportViewer.InitReportViewer()&lt;/P&gt;&lt;P&gt;  at
CrystalDecisions.Windows.Forms.CrystalReportViewer..ctor()&lt;/P&gt;&lt;P&gt;  at
CrystalReportsApplication1.Form1.InitializeComponent()&lt;/P&gt;&lt;P&gt;  at
CrystalReportsApplication1.Form1..ctor()&lt;/P&gt;&lt;P&gt;Exception Info:
System.InvalidOperationException&lt;/P&gt;&lt;P&gt;  at
CrystalReportsApplication1.My.MyProject+MyForms.Create__Instance__[[System.__Canon,
mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]](System.__Canon)&lt;/P&gt;&lt;P&gt;  at
CrystalReportsApplication1.My.MyProject+MyForms.get_Form1()&lt;/P&gt;&lt;P&gt; at
CrystalReportsApplication1.My.MyApplication.OnCreateMainForm()&lt;/P&gt;&lt;P&gt;  at
Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun()&lt;/P&gt;&lt;P&gt;  at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.DoApplicationModel()&lt;/P&gt;&lt;P&gt;  at
Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run(System.String[])&lt;/P&gt;&lt;P&gt;  at
CrystalReportsApplication1.My.MyApplication.Main(System.String[])&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 20:15:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277350#M4599592</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-10-16T20:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report VB.net Application  - Client PC Issues</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277351#M4599593</link>
      <description>&lt;P&gt;Ok, so now I can get the code to work on the client PC but I am still seeing the same error that I see on our server when it is run there. To solve the initial issue, I needed to install the 32 bit version rather than the 62 bit version of the runtime. That being said, I am still seeing this error, where the code is failing on the last line provided:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; 'connect the viewer to the data tables
            If CrystalReportViewer2.LogOnInfo IsNot Nothing Then
            Dim tlInfo As TableLogOnInfos = CrystalReportViewer2.LogOnInfo
            For Each tbloginfo As TableLogOnInfo In tlInfo
                tbloginfo.ConnectionInfo = ConnectionInfo
            Next
        End If






            'fill the subreport data tables
            For Each subrep As ReportDocument In rpt.Subreports
                For Each table As Table In subrep.Database.Tables
                    If table.Name &amp;lt;&amp;gt; "Sheet1_" Then
                        table.LogOnInfo.ConnectionInfo = ConnectionInfo
                        table.ApplyLogOnInfo(table.LogOnInfo)
                    End If
                Next
            Next






            'Update the data on the report
            rpt.VerifyDatabase()
            rpt.Refresh()&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;There was an error Processing PickSlipPrint. Error: System.InvalidCastException: Unable to cast COM object of type 'CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass' to interface type 'CrystalDecisions.ReportAppServer.Controllers.ISCRReportSource'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{31E7715A-8AD0-4D1C-958E-C1BE0A6F2D0C}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).&lt;/P&gt;&lt;P&gt;at System.StubHelpers.StubHelpers.GetCOMIPFromRCW(Object objSrc, IntPtr pCPCMD, IntPtr&amp;amp; ppTarget, Boolean&amp;amp; pfNeedsRelease)&lt;/P&gt;&lt;P&gt;at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Refresh()&lt;BR /&gt;at CrystalDecisions.ReportSource.EromReportSourceBase.Refresh(RequestContext reqContext)&lt;BR /&gt;at CrystalDecisions.CrystalReports.Engine.FormatEngine.Refresh(RequestContext reqContext)&lt;BR /&gt;at CrystalDecisions.CrystalReports.Engine.ReportDocument.Refresh()&lt;BR /&gt;at CrystalReportsApplication1.Form1.CrystalReportViewer1_Load(Object sender, EventArgs e) in C:\Users\chris.kretman\source\repos\CrystalReportsApplication1\CrystalReportsApplication1\Form1.vb:line 105&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 21:23:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277351#M4599593</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-10-16T21:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report VB.net Application  - Client PC Issues</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277352#M4599594</link>
      <description>&lt;P&gt;What version of CR for VS are you using?&lt;/P&gt;&lt;P&gt;Are you distributing the same version to the client PC?&lt;/P&gt;&lt;P&gt;Likely missing a dependency like the VC 2015 C++ runtime or one of MS's dataSet dll's.&lt;/P&gt;&lt;P&gt;CR runtime platform is for your app platform not the OS platform.&lt;/P&gt;&lt;P&gt;Don&lt;/P&gt;</description>
      <pubDate>Mon, 19 Oct 2020 11:01:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277352#M4599594</guid>
      <dc:creator>former_member11696</dc:creator>
      <dc:date>2020-10-19T11:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report VB.net Application  - Client PC Issues</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277353#M4599595</link>
      <description>&lt;P&gt;CRforVS13SP29 is the version I am using.&lt;/P&gt;&lt;P&gt;In have done a lot of brainstorming on this issue and I believe I changed the app to run as a x86 version, which if I'm not mistaken is the 32 bit version. I'm going to test changing the app to a 64 bit version and using the 64 bit version of the runtime like I did with my last app. I'm hoping this resolves the issue. I will let you know.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Mon, 19 Oct 2020 13:28:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277353#M4599595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-10-19T13:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report VB.net Application  - Client PC Issues</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277354#M4599596</link>
      <description>&lt;P&gt;I switched everything to 64 bit and I am still seeing Error # 2 above. When I install the app on my PC it works just fine, but I had just assumed that was because I have the SDK for VS installed on my pc. I've never added a c++ runtime to app dependencies before, do you know what steps to take to do that?&lt;/P&gt;</description>
      <pubDate>Mon, 19 Oct 2020 20:36:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277354#M4599596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-10-19T20:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report VB.net Application  - Client PC Issues</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277355#M4599597</link>
      <description>&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1852920-capture.png" /&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I rebuilt my app yesterday and copied the code over. I am targeting the 64 bit cpu, using a 64 bit installer and using the 64 bit runtime. I believe this other issue has been solved. In my new app I am now seeing this error when trying to print. Also seeing the error in the picture when showing the viewer.&lt;/P&gt;&lt;P&gt;There was an error Processing PickSlipPrint. Error:
CrystalDecisions.CrystalReports.Engine.DataSourceException: Error in File
OM_Picking_Slip - Copy 17844_21380_{4EC228C2-7902-4EE2-AD41-6C510DED6447}.rpt:&lt;/P&gt;&lt;P&gt;Failed to load database information. ---&amp;gt;
System.Runtime.InteropServices.COMException: Error in File OM_Picking_Slip -
Copy 17844_21380_{4EC228C2-7902-4EE2-AD41-6C510DED6447}.rpt:&lt;/P&gt;&lt;P&gt;Failed to load database information. &lt;BR /&gt;
  at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.GetLastPageNumber(RequestContext
pRequestContext) &lt;BR /&gt;
  at
CrystalDecisions.ReportSource.EromReportSourceBase.GetLastPageNumber(ReportPageRequestContext
reqContext) &lt;BR /&gt;
  --- End of inner exception stack trace --- &lt;BR /&gt;
  at CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception
e) &lt;BR /&gt;
  at
CrystalDecisions.ReportSource.EromReportSourceBase.HandleException(Exception
exception) &lt;BR /&gt;
  at
CrystalDecisions.ReportSource.EromReportSourceBase.GetLastPageNumber(ReportPageRequestContext
reqContext) &lt;BR /&gt;
  at
CrystalDecisions.CrystalReports.Engine.FormatEngine.PrintToPrinter(Int32
nCopies, Boolean collated, Int32 startPageN, Int32 endPageN)&lt;/P&gt;&lt;P&gt;  at
CrystalDecisions.CrystalReports.Engine.ReportDocument.PrintToPrinter(Int32
nCopies, Boolean collated, Int32 startPageN, Int32 endPageN)&lt;/P&gt;&lt;P&gt;  at PickSlipPrint.Form1.Form1_Load(Object sender, EventArgs e)
in
C:\Users\chris.kretman\source\repos\PickSlipPrint\PickSlipPrint\Form1.vb:line
134&lt;/P&gt;&lt;P&gt;Also seeing the error in the picture when showing the viewer&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2020 13:16:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277355#M4599597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-10-20T13:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report VB.net Application  - Client PC Issues</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277356#M4599598</link>
      <description>&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;Check their Virus software and add your EXE and all CR folders to the trusted list:&lt;/P&gt;&lt;P&gt;C:\Program Files (x86)\SAP BusinessObjects&lt;/P&gt;&lt;P&gt;Also the Users \Temp folder may need to be added to the trusted list, when opening a report CR makes a copy of the report and saves it into the \Temp folder.&lt;/P&gt;&lt;P&gt;Error in Database can either mean the DB Client is not installed or it's not matching your app platform, X86 requires a 32 bit client and X64 requires the 64 bit Client to be installed.&lt;/P&gt;&lt;P&gt;Don&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2020 14:40:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277356#M4599598</guid>
      <dc:creator>former_member11696</dc:creator>
      <dc:date>2020-10-20T14:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report VB.net Application  - Client PC Issues</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277357#M4599599</link>
      <description>&lt;P&gt;Hi Don,&lt;/P&gt;&lt;P&gt;I changed my app back to use any CPU and the error is now resolved. I believe it is because I am using an excel file, excel 8.0 datasource, as one of my tables in a subreport. If you see the screenshot it prompts me for logon information to the excel file, which requires none. I included a snippet of code and I don't know what to put for the logon information for an excel file that doesn't require any?&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1852921-screenshot-2020-10-20-094927.png" /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;   'fill the subreport data tables
            For Each subrep As ReportDocument In rpt.Subreports
                For Each table As Table In subrep.Database.Tables
                    If table.Name &amp;lt;&amp;gt; "Sheet1_" Then
                        table.LogOnInfo.ConnectionInfo = ConnectionInfo
                        table.ApplyLogOnInfo(table.LogOnInfo)
                    Else




                        'What do i code here to connect to an excel datasource table that has no logon information?


                    End If
                Next
            Next
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Oct 2020 14:50:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277357#M4599599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-10-20T14:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report VB.net Application  - Client PC Issues</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277358#M4599600</link>
      <description>&lt;P&gt;I resolved this on my own by moving from excel as a data source in my report. I created a new table in sql server instead.&lt;/P&gt;&lt;P&gt;Thank you for all of the help and time on this issue.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2020 15:36:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277358#M4599600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-10-20T15:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report VB.net Application  - Client PC Issues</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277359#M4599601</link>
      <description>&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;FYI - MS Excel as a data source should have an ODBC connection to it, to run in 64 bit mode you would need the 64 bit Excel dll's, which you can get from 64 bit version of Microsoft Office.&lt;/P&gt;&lt;P&gt;Converting to a real DB is even better...&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;P&gt;Don&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 20:57:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277359#M4599601</guid>
      <dc:creator>former_member11696</dc:creator>
      <dc:date>2020-10-21T20:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report VB.net Application  - Client PC Issues</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277360#M4599602</link>
      <description>&lt;P&gt;Thanks for sharing your knowledge with the community. While searching the internet to try and find an answer I saw your posts on various sites. &lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 21:21:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-vb-net-application-client-pc-issues/qaa-p/12277360#M4599602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-10-21T21:21:23Z</dc:date>
    </item>
  </channel>
</rss>

