cancel
Showing results for 
Search instead for 
Did you mean: 

Visual studio 2012 and Alerts

Former Member
0 Kudos

I am using Visual Studio 2012.  I have created a report in Crystal Reports that has an alert in it.  It works fine in crystal reports but you can't see the alert in the .net asp.  Any ideas? I find an old post where someone had posted that alerts are not supported in SDK's, but is it still not supported or ant progress? Or could you handle some how the case that alert is generated (I don't need to see why alert or which alert has gone true, only that there is one or more alerts true)?



Accepted Solutions (1)

Accepted Solutions (1)

former_member183750
Active Contributor
0 Kudos

Hi Ari

Please see KBA 1791732 - How to view records from a Crystal Report Alert using the SDK for VS .NET

- Ludek

Senior Support Engineer AGS Product Support, Global Support Center Canada

Follow us on Twitter

Former Member
0 Kudos

Thanks Ludek,

I will try that.

Former Member
0 Kudos

I think that post concerned case you have Crystal RAS (server)?

0 Kudos

Hi Ari,

It's using inProc RAS which comes with all full versions of CR SDK packages, add these assemblies to your project:

using CrystalDecisions.ReportAppServer;

using CrystalDecisions.ReportAppServer.ClientDoc;

using CrystalDecisions.ReportAppServer.Controllers;

using CrystalDecisions.ReportAppServer.ReportDefModel;

using CrystalDecisions.ReportAppServer.CommonControls;

using CrystalDecisions.ReportAppServer.CommLayer;

using CrystalDecisions.ReportAppServer.CommonObjectModel;

using CrystalDecisions.ReportAppServer.ObjectFactory;

using CrystalDecisions.ReportAppServer.Prompting;

using CrystalDecisions.ReportAppServer.DataSetConversion;

using CrystalDecisions.ReportAppServer.DataDefModel;

RAS gets installed with your project and CR Redist packages so no harm in adding them to your project.

Don

Answers (0)