ms word document custom printing through .net

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • madval
    New Member
    • Oct 2006
    • 4

    ms word document custom printing through .net

    hi, i need your help, i'll receive some ms word documents (paragraphs, bullets, different fonts in a document -family-size-format, images, etc. a "normal" document) and i need to print them on a preprinted sheet that have 2 sections for printing data.

    Code:
    +------------------------------------------+
    |                                          |
    |   +----------------------------------+   |
    |   |                                  |   |
    |   |       Field for printing         |   |
    |   |                                  |   |
    |   |                                  |   |
    |   +----------------------------------+   |
    |                                          |
    |   +----------------------------------+   |
    |   |                                  |   |
    |   |       Field for printing         |   |
    |   |                                  |   |
    |   |                                  |   |
    |   +----------------------------------+   |
    |                                          |
    +------------------------------------------+
    how can i break up ms word document data to fit in the fields for printing of the preprinted page?



    - if i had grammar or spelling errors please point me them up to fix them -
  • SammyB
    Recognized Expert Contributor
    • Mar 2007
    • 807

    #2
    Originally posted by madval
    hi, i need your help, i'll receive some ms word documents (paragraphs, bullets, different fonts in a document -family-size-format, images, etc. a "normal" document) and i need to print them on a preprinted sheet that have 2 sections for printing data.

    Code:
    +------------------------------------------+
    | |
    | +----------------------------------+ |
    | | | |
    | | Field for printing | |
    | | | |
    | | | |
    | +----------------------------------+ |
    | |
    | +----------------------------------+ |
    | | | |
    | | Field for printing | |
    | | | |
    | | | |
    | +----------------------------------+ |
    | |
    +------------------------------------------+
    how can i break up ms word document data to fit in the fields for printing of the preprinted page?



    - if i had grammar or spelling errors please point me them up to fix them -
    I don't think you need any programming or .NET to do this. I believe that in Word 2003, in the page setup, you can divide a page into two sub-sections. Unfortunately, I only have Word 2000 on this machine.

    Comment

    • madval
      New Member
      • Oct 2006
      • 4

      #3
      Originally posted by SammyB
      I don't think you need any programming or .NET to do this. I believe that in Word 2003, in the page setup, you can divide a page into two sub-sections. Unfortunately, I only have Word 2000 on this machine.
      Well, I posted the better case to my problem, because it can be 2, 3 or 4 sections per page.

      I've tried to use a RichTextBox control where I'll load ms word document data (for testing I been copy&paste data) into richtextbox and tried to break up the printing area, which works fine, but every section gets printed in a different page. I really don't know if it would be possible to print more than one section per page but I'm trying to. Any ideas?

      Comment

      Working...