mfc >> Crystal Reports 9 - no peplus

by bmcintyre » Tue, 25 Nov 2003 05:18:19 GMT

Hi all,

I am very new to Crystal Reports, and fairly new to the C++ world. I
have an appliaction that used an older version of Crystal Reports, and
used the Peplus.cpp and .h to implement the reports. The reports are
all built, so I am not looking to re-create them, i would just like to
know how to get them to open using Crystal Reports 9 ( which no longer
supports peplus.cpp and .h) Any Help would be really appreciated.

Thanks,

CodeMonkey


Similar Threads

1. Crystal Report Old version vs Visual Studio .net Crystal report

Hi,

I have noticed that Visual studio 2005 coming along with Crystal report. 
I have few crystal reports which is developed in 6.0 in my existing VB 
project and currently we are migrating m y VB application to C#.net. 

In the crystal report site, I am not sure whether I have to redesign reports 
in Visual studio .net (or) Can I use the existing reports it self. 

My question is If I open my existing crystal reports (ver 6.1)  in Visual 
studion .net 2005 and save it as a new file, will it work without any 
problem?? I would appreciate if any body can give some ideas about this.

Thanks

2. Reg:Couldn't generate a report using Crystal Reports in .Net - CSharp/C#

3. Crystal Reports formulas and Blank reports

I can't seem to be able to prevent a Crystal Reports formula to
evaluate an expression when the report contains no records to show.

Here's the formula (DateTransferred is a DateTime column):

If IsNull({MyReportDataSet.DateTransferred}) Then
   " " //empty string
Else
   If ({MyReportDataSet.DateTransferred} = CDate("1/1/1900")) Then
      " " //also pring an empty string - 1/1/1900 means "no date was
selected"
   Else
      ToText({MyReportDataSet.DateTransferred}, "MM/dd/yyyy");



It looks that even if IsNull returns true, Crystal is still trying to
evaluate this line
If ({MyReportDataSet.DateTransferred} = CDate("1/1/1900")) Then
which is causing the error "A date is required here" to be displayed.

I tried changing Report Options -> Convert DBNull to Default, bub that
didn't help.

I'd appreciate any help/advice

Using Crystal that comes w/ VS 2005



4. Need help in showing a report using .Net Crystal reports - CSharp/C#

5. SHould I use Crystal Reports or Active Reports?

I know this may not be the best NG for this, but I feel you guys know more 
about this than any of the other NGs.

I need to build several simple reports (over 50 of them and they get their 
data from sql server) and I was wondering whish of these is the better tool 
. We're still not sure if they'll be loaded from an existing VB6 application 
or if I'll have to make a separate module for them (in .Net).
In general, which is the better tool? Since they'll be part of another 
application (the VB6 module or the .Net module), we don't want the client to 
spend more money on licencing fees (except the $$$ I spend on the copy of 
Crystal or Active Reports to develop the reports).

Any help is appreciated. 


6. rename "Main Report" in Crystal Report Viewer - CSharp/C#

7. The Crystal Reports for Visual Studio .NET doesn't show the report

I've written a Visual Studio .NET application (WinForms app) and put a
Crystal Reports for .NET report in it.  It is a very simple application -
one regular form and another with the crystal reports viewer on it.

When I run the application on my development machine, I can see the report
just fine.  However, when I install the application onto another machine and
try to run the report, the form with the crystal reports viewer comes up,
but nothing at all appears in the viewer control.

Why not?

Rod


8. How to build dynamic report using crystal report? - CSharp/C#