Using Word for RTF files creation to use with RichTextBox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is that possible to create the body of a static (or fix) report using Word,
saving that report as a RTF file and then loading that file into a RichText
Box:

Example, with Word, I create the following report (using fonts size and
others minimum font features):
PRODUCT: +++++++++++++++++
SALES.................########.##
Provincial taxes....########.##
Federal taxes.......########.##
TOTAL.................########.##

Then, my application will take care of calculations & replaces ####.## by
numbers and +++++++++ by text, etc (I know how to do that).

***

Any GENERAL considerations about this approach ? Crystal Reports seems huge
& complex. I am looking for a simple solution for designing & maintenance of
fix-static reports in a window environment.
 
Crystal Reports is one of the most unintuitive, bloated-for-what-it-does,
and bug-ridden product of software development ever. It was true 8 years ago
and it's still true today. Avoid it like the plague. Look into the
ReportViewer control that's part of VS2005. It has nothing to do with
Crystal.

If you really want to create your own manual simple flat "reports," I
wouldn't go the RTF route. Seems it would be easier to just construct HTML
using a stringbuilder, save it as a file, and display it in a Webbrowser
control.
 
Yes it's possible to do this. However, you need to know some VBA for Word
documents which you can incorporate into your .net program with some minor
modifications. Just curious but why don't you create the report directly
into a RichText box?
 
Thank you very much. And I am taking good notes about CR.
--
Super Basic programmer under DOS since 1983. Absolutely dummy VB.NET
programmer under Windows !


CMM said:
Crystal Reports is one of the most unintuitive, bloated-for-what-it-does,
and bug-ridden product of software development ever. It was true 8 years ago
and it's still true today. Avoid it like the plague. Look into the
ReportViewer control that's part of VS2005. It has nothing to do with
Crystal.

If you really want to create your own manual simple flat "reports," I
wouldn't go the RTF route. Seems it would be easier to just construct HTML
using a stringbuilder, save it as a file, and display it in a Webbrowser
control.
 
Tax forms reports change every year. I am looking for an easy way of
maintaining those reports.
 

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