<?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: CrystalDecisions.Shared.SharedUtils threw an exception in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676098#M2750737</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Information about the system:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;windows 7 64bit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VS2010&lt;/P&gt;&lt;P&gt;version: 10&lt;/P&gt;&lt;P&gt;runtime: v2.0.50727&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Crystal Reports&lt;/P&gt;&lt;P&gt;version:13.2000.0&lt;/P&gt;&lt;P&gt;runtime: v2.0.50727&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;References added: CrystalDecisions.CrystalReports.&lt;/P&gt;&lt;P&gt;Design&lt;/P&gt;&lt;P&gt;Engine&lt;/P&gt;&lt;P&gt;TemplateEngine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit:  I also moved information into a new project/solution, and i was getting the same error, so it isnt simply solved similarly how another person did on this forums.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: fallenreaper on Feb 14, 2011 8:53 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is the output from the inner exception:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System.TypeInitializationException: The type initializer for 'CrystalDecisions.Shared.SharedUtils' threw an exception. ---&amp;gt; System.BadImageFormatException: Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. An attempt was made to load a program with an incorrect format.&lt;/P&gt;&lt;P&gt;   at CrystalDecisions.Shared.SharedUtils..cctor()&lt;/P&gt;&lt;P&gt;   --- End of inner exception stack trace ---&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 will.ReportViewer.InitializeComponent() in C:\Users\Fallenreaper\Documents\Visual Studio 2010\Projects\will\will\ReportViewer.Designer.vb:line 25&lt;/P&gt;&lt;P&gt;   at will.ReportViewer..ctor()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: fallenreaper on Feb 14, 2011 9:32 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Feb 2011 18:41:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-02-14T18:41:14Z</dc:date>
    <item>
      <title>CrystalDecisions.Shared.SharedUtils threw an exception</title>
      <link>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaq-p/7676097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, I was having an issue similar to the thread at &lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="9907025"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is what i am doing currently:&lt;/P&gt;&lt;P&gt;DSN connection to a source via &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Dim conn As New OdbcConnection("DSN=lalConnect")&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
input = getfile()
While (Not (input.Contains(".rpt")))
         MessageBox.Show(input &amp;amp; " is NOT a .rpt file")
         input = getfile()
End While
ReportViewer.CrystalReportViewer1.ReportSource = input.ToString
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I set the compiler to be for any CPU type (x86 || x64)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My error throws in the last line of the above code and would show message "An Error Occurred creating the form. See Exception.InnerException for details. The error is: The type initializer for 'CrystalDecisions.Shared.SharedUtils' threw an exceptiion."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I wasnt quite sure as to why this was happening, and as a side question, i wasnt sure how to connect my DSN connection to the report so it can properly pull information.&lt;/STRONG&gt; &lt;EM&gt;could be a reason why it is throwing this error..?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks everyone.  &lt;/P&gt;&lt;P&gt;P.S.- If you need more information, i can post it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: fallenreaper on Feb 14, 2011 4:38 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Feb 2011 14:44:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaq-p/7676097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-14T14:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: CrystalDecisions.Shared.SharedUtils threw an exception</title>
      <link>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676098#M2750737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Information about the system:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;windows 7 64bit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VS2010&lt;/P&gt;&lt;P&gt;version: 10&lt;/P&gt;&lt;P&gt;runtime: v2.0.50727&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Crystal Reports&lt;/P&gt;&lt;P&gt;version:13.2000.0&lt;/P&gt;&lt;P&gt;runtime: v2.0.50727&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;References added: CrystalDecisions.CrystalReports.&lt;/P&gt;&lt;P&gt;Design&lt;/P&gt;&lt;P&gt;Engine&lt;/P&gt;&lt;P&gt;TemplateEngine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit:  I also moved information into a new project/solution, and i was getting the same error, so it isnt simply solved similarly how another person did on this forums.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: fallenreaper on Feb 14, 2011 8:53 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is the output from the inner exception:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System.TypeInitializationException: The type initializer for 'CrystalDecisions.Shared.SharedUtils' threw an exception. ---&amp;gt; System.BadImageFormatException: Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. An attempt was made to load a program with an incorrect format.&lt;/P&gt;&lt;P&gt;   at CrystalDecisions.Shared.SharedUtils..cctor()&lt;/P&gt;&lt;P&gt;   --- End of inner exception stack trace ---&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 will.ReportViewer.InitializeComponent() in C:\Users\Fallenreaper\Documents\Visual Studio 2010\Projects\will\will\ReportViewer.Designer.vb:line 25&lt;/P&gt;&lt;P&gt;   at will.ReportViewer..ctor()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: fallenreaper on Feb 14, 2011 9:32 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Feb 2011 18:41:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676098#M2750737</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-14T18:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: CrystalDecisions.Shared.SharedUtils threw an exception</title>
      <link>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676099#M2750738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd suggest looking at a few resources and sample apps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample apps:&lt;/P&gt;&lt;P&gt;&lt;A href="https://wiki.sdn.sap.com/wiki/display/BOBJ/Crystal" target="test_blank"&gt;https://wiki.sdn.sap.com/wiki/display/BOBJ/Crystal&lt;/A&gt;&lt;EM&gt;Reports&lt;/EM&gt;for&lt;EM&gt;.NET&lt;/EM&gt;SDK+Samples&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd suggest vbnet_win_dbengine to see info re. database logon. Also search these forums and use the search box at the top right of this web page. Lots of info on database logons.  Vbnet_win_simplepreviewreport is a good example of loading a report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, see the following;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2081b4d9-6864-2b10-f49d-918baefc7a23" target="test_blank"&gt;https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2081b4d9-6864-2b10-f49d-918baefc7a23&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Developer help files.&lt;/P&gt;&lt;P&gt;CRVS2010:&lt;/P&gt;&lt;P&gt;Report Application Server .NET API Guide	&lt;A href="http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/xi4_rassdk_net_api_en.zip" target="test_blank"&gt;http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/xi4_rassdk_net_api_en.zip&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Report Application Server .NET SDK Developer Guide	&lt;A href="http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/xi4_rassdk_net_dg_en.zip" target="test_blank"&gt;http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/xi4_rassdk_net_dg_en.zip&lt;/A&gt;&lt;/P&gt;&lt;P&gt;SAP Crystal Reports .NET API Guide	&lt;A href="http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_api_2010_en.zip" target="test_blank"&gt;http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_api_2010_en.zip&lt;/A&gt;&lt;/P&gt;&lt;P&gt;SAP Crystal Reports .NET SDK Developer Guide	&lt;A href="http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_dg_2010_en.zip" target="test_blank"&gt;http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_dg_2010_en.zip&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CR2008:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/businessobject/product_guides/boexir31/en/crsdk_net_dg_12_en.chm" target="test_blank"&gt;http://help.sap.com/businessobject/product_guides/boexir31/en/crsdk_net_dg_12_en.chm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/businessobject/product_guides/boexir31/en/crsdk_net_apiRef_12_en.chm" target="test_blank"&gt;http://help.sap.com/businessobject/product_guides/boexir31/en/crsdk_net_apiRef_12_en.chm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ludek&lt;/P&gt;&lt;P&gt;Follow us on Twitter &lt;A href="http://twitter.com/SAPCRNetSup" target="test_blank"&gt;http://twitter.com/SAPCRNetSup&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 18:41:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676099#M2750738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-15T18:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: CrystalDecisions.Shared.SharedUtils threw an exception</title>
      <link>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676100#M2750739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you must install the correct crystal report runtime (32 or 64) and this error will be resolved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 23:15:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676100#M2750739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-15T23:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: CrystalDecisions.Shared.SharedUtils threw an exception</title>
      <link>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676101#M2750740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wasnt sure about that Georgino - AUB, as I have made and run Crystal reports previously and it didnt affect me, but i am downloading the most current patch just in case.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Feb 2011 13:40:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676101#M2750740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-16T13:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: CrystalDecisions.Shared.SharedUtils threw an exception</title>
      <link>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676102#M2750741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was looking at the example code within the links in your posts, and i has a question about them as it is shown in c# and vb&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
dim myDataSet as Dataset = DatasetConfiguration.customerdataset
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;as shown on [http://msdn.microsoft.com/en-us/library/ms227627%28v=vs.90%29.aspx"] in step 7 of "To instantiate and bind a non-embedded report to the CrystalReportViewer control"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to do something similar in vb.net, but when writing, it doesnt say that datasetconfiguration exists.  I didnt know what i should be importing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;currently i have the following imported:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Imports MySql.Data.MySqlClient
Imports System.Configuration
Imports System.Text.RegularExpressions
Imports System.Data.Odbc
Imports System.Data
Imports CrystalDecisions.CrystalReports.Engine
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What else am i missing to import or is it located under something else in vb.net???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Feb 2011 17:46:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676102#M2750741</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-16T17:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: CrystalDecisions.Shared.SharedUtils threw an exception</title>
      <link>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676103#M2750742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps the better thing to look at will be the sample app vbnet_win_adodotnet.zip from &lt;A href="https://wiki.sdn.sap.com/wiki/display/BOBJ/Crystal" target="test_blank"&gt;https://wiki.sdn.sap.com/wiki/display/BOBJ/Crystal&lt;/A&gt;&lt;EM&gt;Reports&lt;/EM&gt;for&lt;EM&gt;.NET&lt;/EM&gt;SDK+Samples&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Ludek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Feb 2011 18:09:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676103#M2750742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-16T18:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: CrystalDecisions.Shared.SharedUtils threw an exception</title>
      <link>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676104#M2750743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had installed and did everything for that program and it was getting an error that i have seen in [&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="10009911"&gt;&lt;/A&gt;] so if i am getting an error, i think it might be best to reinstall VS2010 in an attempt to cure my error?  I figure it was a perfectly running demo, and i have seen that error many times today when working on and building my .net projects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ill reinstall tonight, and see if that works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Feb 2011 21:02:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676104#M2750743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-16T21:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: CrystalDecisions.Shared.SharedUtils threw an exception</title>
      <link>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676105#M2750744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll keep my fingers crossed &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Ludek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Feb 2011 21:38:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676105#M2750744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-16T21:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: CrystalDecisions.Shared.SharedUtils threw an exception</title>
      <link>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676106#M2750745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Of these issues, nothing seems to be working.  I was unsure why none of this is working.  I have recompiled, recreated projects, and approached from several angles, but it does not seem to work.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I still get the util's issue, and i dont know anymore then you all how to fix it.  Assumed that this is just because of this being associated with a Microsoft Product.  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am still working on this issue every day, and so far, put over 100 hours into this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Mar 2011 14:13:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676106#M2750745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-14T14:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: CrystalDecisions.Shared.SharedUtils threw an exception</title>
      <link>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676107#M2750746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd suggest creating a phone case:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://store.businessobjects.com/store/bobjamer/en_US/pd/productID.98078100?resid=S6I@hgoHAkEAAGsiyVkAAAAR&amp;amp;rests=1282226845369" target="test_blank"&gt;http://store.businessobjects.com/store/bobjamer/en_US/pd/productID.98078100?resid=S6I@hgoHAkEAAGsiyVkAAAAR&amp;amp;rests=1282226845369&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it's CR bug, you'll get a refund. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Ludek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Mar 2011 17:51:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystaldecisions-shared-sharedutils-threw-an-exception/qaa-p/7676107#M2750746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-14T17:51:33Z</dc:date>
    </item>
  </channel>
</rss>

