Writing Word with CFContent

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default 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 experience with this?
    stephenhardesty Guest

  2. Similar Questions and Discussions

    1. CFCONTENT
      Hello, Is it possible to use <CFCONTENT> within a frame or table layout? seems when I run my code (which is a pop up window), the <cfcontent>...
    2. cfchart image not exporting to Word when using cfcontent
      Hello all, I'm using cfcontent (see code below) to output formatted query results into MS Word, but the cfchart I am creating (see code below) does...
    3. CFCONTENT and SSL
      I've read several online forums concerning the CFCONTENT - PDF problem but haven't seen anything similar to the problem I'm having... I'm...
    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 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...
  3. #2

    Default 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 experience with this?
    stephenhardesty Guest

  4. #3

    Default Re: Writing Word with CFContent

    One technique is to create a template in word embed your vars #myvar# etc then save to RTF format.

    Then open up the template and add it with your necessary CF logic and serve under cfcontent
    Pete Thomas Guest

  5. #4

    Default Re: Writing Word with CFContent

    Try creating the document in Word, formatting it how you want, then save it as
    HTML. Open the HTML file in dreamweaver and inspect the formatting styles. You
    should be able to implement the same style attributes in you document to
    reproduce the formatting.

    kyle969 Guest

  6. #5

    Default Re: Writing Word with CFContent

    BTW, this also works well with Excel.
    kyle969 Guest

  7. #6

    Default Re: Writing Word with CFContent

    Okely dokely....
    I have a question,

    How do you go about assigning the relevant styles to the relevant text?
    I assume I use the RANGE from the word object model, but i am having some real
    difficulty in redifining the new rane to attribute the new formatting to.

    I currently have
    cfset objdocuments = objword.Documents>
    <cfset newdoc = objdocuments.add()>
    <cfset docrange = newdoc.range(0)>
    <cfset docrange.font.bold = true>
    <cfset docrange.text = "Hello this is a test">
    <cfset docfilepath = expandpath("hellowayne.doc")>
    <cfset newdoc.saveas(docfilepath)>
    <cfset newdoc.close()>

    this works great and Bolds the whole new text.
    how do I now add further text? and apply a different formatting to the new
    text?

    HeloWorld 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