Problem with writing ms-word hheader through ASP.NET(VB.NET)

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Problem with writing ms-word hheader through ASP.NET(VB.NET)

    Hi,

    I have to generate a word or rtf file on the fly whould
    have a Header and footer both but i m not able to include
    the header and footer in the document can anyone suggest
    me how can i do that.
    Currrently i am having a template of word document which
    has a header ad footer and in that i m having tags which i
    m replacing with my data.But when i m genrating the
    document its not including the header and footer in the
    document.How can i do that.
    Any suggestion or example given willl be highly
    appreicated.

    thaanks
    vijay
    Vijay Guest

  2. Similar Questions and Discussions

    1. Problem writing to file.....charset I think
      I am having a problem writing to a file. I am trying to write the following to a file <cfset text = "#chr(1)##chr(0)##chr(8)#"> <cffile...
    2. Writing Word with CFContent
      I can write a simple word document using cfcontent. However, I do not seem to be able to impose any formatting on it. Does anyone out there have any...
    3. problem writing a file
      Hi, I'm really stuck with this one - wondering if you can spot the problem? I think that it's a webserver problem that goes deeper than web.config....
    4. Writing a pdf from word using acrobat 4 vs 6 - Missing Graphics
      I want to write a version 4 compatible pdf from word. The pdf will be viewed via an internet browser. If I use acrobat 4 no problems. If however I...
    5. Problem with writing on image
      Ashariel-- The image needs to be a background, either on the page or inside a table, table cell, or layer. Don't insert the image, but assign the...
  3. #2

    Default Re: Problem with writing ms-word hheader through ASP.NET(VB.NET)

    Vijay,

    I've done this using bookmarks, the code below is written using VB6 but the
    references to the Ms-Word object should work in dotnet as well !!

    Hope this helps

    Jurjen de Groot,
    G.I.T.S. Netherlands.


    Dim objWord as Object
    Set objWord = new Word.Application

    // set seekview to PageHeader
    objWord.ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageHeader

    // Find your bookmarks in the header/footer here and insert text accordingly
    objWord.ActiveDocument.Bookmarks("HeaderClientName ").Select
    objWord.Selection.TypeText Text:="ClientName"

    // set seekview to Main Document
    objWord.ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument

    // Find your bookmarks in the main document and insert text accordingly
    objWord.ActiveDocument.Bookmarks("MainClientName") .Select
    objWord.Selection.TypeText Text:="ClientName"



    "Vijay" <vijay@healthnettech.com> wrote in message
    news:0d4901c34543$ad9a1eb0$a301280a@phx.gbl...
    > Hi,
    >
    > I have to generate a word or rtf file on the fly whould
    > have a Header and footer both but i m not able to include
    > the header and footer in the document can anyone suggest
    > me how can i do that.
    > Currrently i am having a template of word document which
    > has a header ad footer and in that i m having tags which i
    > m replacing with my data.But when i m genrating the
    > document its not including the header and footer in the
    > document.How can i do that.
    > Any suggestion or example given willl be highly
    > appreicated.
    >
    > thaanks
    > vijay

    Jurjen de Groot Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139