473,396 Members | 1,936 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Several Crystal Reports Doubts

Hi there to all.

I am a .NET Crystal newbie and I hope that you don’t pick me up much :) with
the following questions:

1) It’s possible to access the report model to alter the rendered data. I’m
talked about a process like .NET data grid, where we can iterate thru the
rows and change data.

2) I have a report with a linked sub report. The data targets the same data
source and data table. One requisite of the report it’s that only 7 records
per page are displayed as the sub report to. The problem is that the sub
report is showing me only 1 record that is the last record of the main
report. I want that 7 record appear in the main and sub report. The reports
are linked by a int column.

3) It’s possible to perform totals in time fields? I’ve a dataset with a
time span column. When I drag it to the report, the column is transformed in
a string. Other requisite that I have is that a time span of 1.23.40 (1 day,
23 hours and 40 minutes) must be visualized as 47:40.

4) There is such thing as Blob parameters. The report that I am doing as
multi culture support and some of the images are given by a globalized
Resource Manager. I can drag and drop a binary field from a dataset, but can
I create a binary parameter just to avoid this dummy data in dataset?
Help will be much appreciated. Thanks in advance

Tiago Miguel Silva
tm*****@gmail.com

Jul 21 '05 #1
2 1796
This is the quick answer to your question 1), but may also helps on your
other questions, if you know what I am talking about.

With Crystal Report.NET, you have two way to get data for the reports: PULL
or PUSH.

PULL is the most common way the get data for report: you specify a query,
when the report is being opened, it connects to the data source and grad
data defined by the query.

On the other hand, with PUSH, the data is retrieved first, you can make
changes to the set of data, then push the data into the report when it being
opened.

PUSH is often used in multi-tier applications where data for the reports is
retrieved by data access layer objects.

I tend to use PUSH in my Window desktop app' report, because the data has
been loaded into Win app, why to have the report query data source again.

Hope this gives you some idea.

"Tiago Miguel Silva" <Ti**************@discussions.microsoft.com> wrote in
message news:4D**********************************@microsof t.com...
Hi there to all.

I am a .NET Crystal newbie and I hope that you don't pick me up much :) with the following questions:

1) It's possible to access the report model to alter the rendered data. I' m talked about a process like .NET data grid, where we can iterate thru the
rows and change data.

2) I have a report with a linked sub report. The data targets the same data source and data table. One requisite of the report it's that only 7 records per page are displayed as the sub report to. The problem is that the sub
report is showing me only 1 record that is the last record of the main
report. I want that 7 record appear in the main and sub report. The reports are linked by a int column.

3) It's possible to perform totals in time fields? I've a dataset with a
time span column. When I drag it to the report, the column is transformed in a string. Other requisite that I have is that a time span of 1.23.40 (1 day, 23 hours and 40 minutes) must be visualized as 47:40.

4) There is such thing as Blob parameters. The report that I am doing as
multi culture support and some of the images are given by a globalized
Resource Manager. I can drag and drop a binary field from a dataset, but can I create a binary parameter just to avoid this dummy data in dataset?
Help will be much appreciated. Thanks in advance

Tiago Miguel Silva
tm*****@gmail.com

Jul 21 '05 #2
Thanks for the reply Norman.

I´m using the PUSH method being the data returned by application Data Layer
using Typed Datasets.

I hope that someone else answers to my other questions :)

Thanks

"Norman Yuan" wrote:
This is the quick answer to your question 1), but may also helps on your
other questions, if you know what I am talking about.

With Crystal Report.NET, you have two way to get data for the reports: PULL
or PUSH.

PULL is the most common way the get data for report: you specify a query,
when the report is being opened, it connects to the data source and grad
data defined by the query.

On the other hand, with PUSH, the data is retrieved first, you can make
changes to the set of data, then push the data into the report when it being
opened.

PUSH is often used in multi-tier applications where data for the reports is
retrieved by data access layer objects.

I tend to use PUSH in my Window desktop app' report, because the data has
been loaded into Win app, why to have the report query data source again.

Hope this gives you some idea.

"Tiago Miguel Silva" <Ti**************@discussions.microsoft.com> wrote in
message news:4D**********************************@microsof t.com...
Hi there to all.

I am a .NET Crystal newbie and I hope that you don't pick me up much :)

with
the following questions:

1) It's possible to access the report model to alter the rendered data. I'

m
talked about a process like .NET data grid, where we can iterate thru the
rows and change data.

2) I have a report with a linked sub report. The data targets the same

data
source and data table. One requisite of the report it's that only 7

records
per page are displayed as the sub report to. The problem is that the sub
report is showing me only 1 record that is the last record of the main
report. I want that 7 record appear in the main and sub report. The

reports
are linked by a int column.

3) It's possible to perform totals in time fields? I've a dataset with a
time span column. When I drag it to the report, the column is transformed

in
a string. Other requisite that I have is that a time span of 1.23.40 (1

day,
23 hours and 40 minutes) must be visualized as 47:40.

4) There is such thing as Blob parameters. The report that I am doing as
multi culture support and some of the images are given by a globalized
Resource Manager. I can drag and drop a binary field from a dataset, but

can
I create a binary parameter just to avoid this dummy data in dataset?
Help will be much appreciated. Thanks in advance

Tiago Miguel Silva
tm*****@gmail.com


Jul 21 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Stephan | last post by:
Hi, I'm using Visual Studio 2003 (C#) with the integrated Crystal Report software and have the following question: How can I assign a value (string) to an unbound (string) field in Crystal...
5
by: BStorm | last post by:
I have a transaction log file where the DataSet table's Description column is actually delimited into "subcolumns" based upon the transaction id. I would like to parse these into separate fields...
3
by: Gheaci Maschl | last post by:
Hi all! I would like to have your opinion about my problem and my proposal how to solve it: Ingredients: - BTriev database - Crystal Reports - maybe MS Access - Liinos6 (small ERP software)
7
by: p | last post by:
WE had a Crystal 8 WebApp using vs 2002 which we upgraded to VS2003. I also have Crystal 9 pro on my development machine. The web app runs fine on my dev machine but am having problems deploying....
2
by: Tiago Miguel Silva | last post by:
Hi there to all. I am a .NET Crystal newbie and I hope that you don’t pick me up much :) with the following questions: 1) It’s possible to access the report model to alter the rendered...
3
by: VMI | last post by:
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...
0
by: annadurai | last post by:
Dear sir Sub :- ASP.NET with CRYSTAL REPORT in VISUAL STUDIO 2003 I have following doubts in ASP.NET with crystal reports. 1) In my crystal report output screen, PRINTER icon is not...
3
by: Miro | last post by:
Hi, Just wondering what a good book is on visual studios 2008 ( or 2005 if no 2008 ) that teaches you how to properly use crystal reports with it. Or im assuming that as long as I can create a...
1
by: =?Utf-8?B?Q2lhcmFuIE8nJ0Rvbm5lbGw=?= | last post by:
On reflection, you could possibly make the app a self extracting zip file which extracts the EXE and a settings file and then starts the app, then when you app closes, it can repack the settings...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.