473,491 Members | 2,248 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Printing Objects

Hi,

I want to develop a 'truly' object oriented application, that is, my
business logic objects handle the business logic (of course) and the
persistence to a MS SQL server database. The user interface only deals with
objects (sometimes using reflection to make them 'editable'). I want to know
if anybody has a good suggestion how to print my (collections of) objects. I
dont want to use a tool like crystal reports, because it accesses the
database directly, instead of 'communicating' with the business objects. I
don't know if there are any (commercial) tools available which deal with
printing objects. Anyone?

kind regards,
Christiaan
Nov 15 '05 #1
3 2175
Hi,

You can use CR with a XML file representing the data, you can generate a
XML from the collection and make CR use it as its datasource.

Anyway I think that the printing is a complex operation by itself and you
should use especialized tool for it. CR is a VERY good one for this. !

Cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

"Chrisitiaan" <no**@none.nl> wrote in message
news:u5*************@TK2MSFTNGP12.phx.gbl...
Hi,

I want to develop a 'truly' object oriented application, that is, my
business logic objects handle the business logic (of course) and the
persistence to a MS SQL server database. The user interface only deals with objects (sometimes using reflection to make them 'editable'). I want to know if anybody has a good suggestion how to print my (collections of) objects. I dont want to use a tool like crystal reports, because it accesses the
database directly, instead of 'communicating' with the business objects. I don't know if there are any (commercial) tools available which deal with
printing objects. Anyone?

kind regards,
Christiaan

Nov 15 '05 #2
thnx,
I know, I am looking for a specialized tool;) I Just want to know whether
there is a Object-Oriented tool, one which can handle objects instead of
datasources.

"Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin AT dot.state.fl.us>
schreef in bericht news:On**************@TK2MSFTNGP10.phx.gbl...
Hi,

You can use CR with a XML file representing the data, you can generate a
XML from the collection and make CR use it as its datasource.

Anyway I think that the printing is a complex operation by itself and you
should use especialized tool for it. CR is a VERY good one for this. !

Cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

"Chrisitiaan" <no**@none.nl> wrote in message
news:u5*************@TK2MSFTNGP12.phx.gbl...
Hi,

I want to develop a 'truly' object oriented application, that is, my
business logic objects handle the business logic (of course) and the
persistence to a MS SQL server database. The user interface only deals with
objects (sometimes using reflection to make them 'editable'). I want to

know
if anybody has a good suggestion how to print my (collections of)

objects. I
dont want to use a tool like crystal reports, because it accesses the
database directly, instead of 'communicating' with the business
objects. I
don't know if there are any (commercial) tools available which deal with
printing objects. Anyone?

kind regards,
Christiaan


Nov 15 '05 #3
I use Active Reports which very similar to Crystal Reports. I do not know
of a printing/reporting object that handles objects as a datasource. I
think it would be difficult to create a printing object that will take any
object. There would have to be some rules for the objects for a developer
to follow. I suggest that you use Crystal, Active Reports or some other
third party tool. I would create my business objects to be persisted to XML
and create the report from there.

Good Luck

"Chrisitiaan" <no**@none.nl> wrote in message
news:uq**************@TK2MSFTNGP09.phx.gbl...
thnx,
I know, I am looking for a specialized tool;) I Just want to know whether
there is a Object-Oriented tool, one which can handle objects instead of
datasources.

"Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin AT dot.state.fl.us>
schreef in bericht news:On**************@TK2MSFTNGP10.phx.gbl...
Hi,

You can use CR with a XML file representing the data, you can generate a XML from the collection and make CR use it as its datasource.

Anyway I think that the printing is a complex operation by itself and you should use especialized tool for it. CR is a VERY good one for this. !

Cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

"Chrisitiaan" <no**@none.nl> wrote in message
news:u5*************@TK2MSFTNGP12.phx.gbl...
Hi,

I want to develop a 'truly' object oriented application, that is, my
business logic objects handle the business logic (of course) and the
persistence to a MS SQL server database. The user interface only deals

with
objects (sometimes using reflection to make them 'editable'). I want to
know
if anybody has a good suggestion how to print my (collections of)

objects.
I
dont want to use a tool like crystal reports, because it accesses the
database directly, instead of 'communicating' with the business

objects.
I
don't know if there are any (commercial) tools available which deal

with printing objects. Anyone?

kind regards,
Christiaan



Nov 15 '05 #4

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

Similar topics

4
1426
by: Paul Rubin | last post by:
How about adding a string interpolation method and a some print methods to strings. 'hello world'.print() => same as "print 'hello world'". With optional fd arg, print to file object 'hello...
3
4765
by: Fabio Pliger | last post by:
Hi! I'm using wxPython to handle my application gui.. So, I have a notebook widget and i have to print the object inside it's tab ... Maybe doing a preview before printing... I know that wx has...
1
2674
by: Frank.Sebesta | last post by:
I have a employees database with a picture that shows on a form with employee information. Similar to the Northwinds sample database. When I print the record, my output is only the data and does...
5
10066
by: Patrick De Ridder | last post by:
How can I turn what I want to print 90 degrees using the logic below? Please tell me the code with which to make the modification. Many thanks, Patrick. using System.ComponentModel; using...
6
3222
by: Chris Dunaway | last post by:
The method for printing documents in .Net can be confusing, especially for newer users. I would like to create a way to simplify this process. My idea would be implemented using a PrintDocument...
4
1938
by: Prakash | last post by:
I'm developing an HR package which would contain the Employees Photo + upto 3 pages (pictures) of his Passport + pictures of his Driving License and Residence Card. If the user wants to print...
8
5868
by: Neo Geshel | last post by:
Greetings. BACKGROUND: My sites are pure XHTML 1.1 with CSS 2.1 for markup. My pages are delivered as application/xhtml+xml for all non-MS web clients, and as text/xml for all MS web...
0
2201
by: nikhilgargi | last post by:
Requirement: I need to provide printing capability in a C# desktop application that I am developing The documents that need to be printed can be in Rich Text Format (RTF) or HTML. Custom...
7
2546
by: Iain Wilson | last post by:
I am pulling my hair out trying to print various objects from a .net web page My apologies for cross posting but I need an answer and my previous post has attracted no interest. ASP.Net 2.0...
0
7154
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
7190
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7360
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5451
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,...
1
4881
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4578
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3076
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1392
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
280
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.