Convert data to a printable format.

  • Thread starter Thread starter Sean
  • Start date Start date
S

Sean

Hi,

I have a situation here regarding a VB.net application. I
need to convert a bunch of data to a presentable and
printable format.

Is there an economical (perhaps an open source third party
library) and easy way to do this? (For example: may be
build an XML document from the data and then convert it
into PDF format.)

Any ideas or suggestions will be greatly appreciated.
Thank you very much.

regards,
Sean
 
Hi,

Take a look at crystal reports that comes with vs.net.

Ken
-------------------
Hi,

I have a situation here regarding a VB.net application. I
need to convert a bunch of data to a presentable and
printable format.

Is there an economical (perhaps an open source third party
library) and easy way to do this? (For example: may be
build an XML document from the data and then convert it
into PDF format.)

Any ideas or suggestions will be greatly appreciated.
Thank you very much.

regards,
Sean
 
Hi Tym

A hack I sometimes use is to use the Web browser control to render some HTML
output (create the HTML from XML using XSLT), then trigger printing using
SendKeys...in terms of comparing it to the Crystal Reports approach, you lose
the ability to print without displaying a Print dialog, and the design time
support isn't there, but it's still pretty neat!

HTH

Nigel Armstrong
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top