Generating WORD document

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

  1. #1

    Default Generating WORD document

    Hi Everyone, Does anyone know how I can generate a Microsoft WORD file from
    my ColdFusion application? I want to be able to set the font, size, margins,
    etc. Are there special characters for paragraphs or line breaks? Any info on
    this subject would be greatly appreciated.

    mohadi Guest

  2. Similar Questions and Discussions

    1. Word Document
      Hi there, I have just made a navigation help file in Microsoft Word, is it possible to link this document to a Director movie, if it is how do i do...
    2. Generating WORD documents from CF
      Hi Everyone, Does anyone know how I can generate a Microsoft WORD file from my ColdFusion application? I want to be able to set the font, size,...
    3. Generating Word document from MySQL using PHP
      Hi, I have an app in which various people make entries which are stored in MySQL. In order to provide reports, I have a requirement to...
    4. Characters overlapping in pdf document created from a Word document
      We are using Adobe Acrobat 6.0, Word and Excel 2002 and Windows 2000. We create a portion of a document in Word and a portion in Excel. Then we print...
    5. Generating bookmarks while converiting multiple word files
      By using command Create PDF > From Multiple Files and choosing the MS Word files to be converted into a single pdf file, it seems impossible to...
  3. #2

    Default Re: Generating WORD document

    Word would need to be installed on the hosting server, and you'd use the
    cfobject tag to create an instance of the word application for use in
    Coldfusion. As far as all the specifics, you'll just have to study the
    object model of word to understand how to interact with it.




    "mohadi" <mohadi@pobox.com> wrote in message
    news:cv2q1b$m4$1@forums.macromedia.com...
    > Hi Everyone, Does anyone know how I can generate a Microsoft WORD file
    > from
    > my ColdFusion application? I want to be able to set the font, size,
    > margins,
    > etc. Are there special characters for paragraphs or line breaks? Any info
    > on
    > this subject would be greatly appreciated.
    >

    Terry Bankert Guest

  4. #3

    Default Re: Generating WORD document

    There's an easier way to acomplish this. You can use the cfcontent tag to
    control how the output is rendered - what mime type. Here's an example that
    uses the cfartgallery datasource that ships with the getting started samples

    <cfcontent type="application/msword">
    <cfquery name="getArtist" datasource="cfartgallery">
    SELECT *
    FROM Artists
    </cfquery>
    <cfdump var=#getArtist#>

    --
    Bill Sahlas
    ColdFusion QA


    "Terry Bankert" <terry@richbank-studios.com> wrote in message
    news:cv382g$k7o$1@forums.macromedia.com...
    > Word would need to be installed on the hosting server, and you'd use the
    > cfobject tag to create an instance of the word application for use in
    > Coldfusion. As far as all the specifics, you'll just have to study the
    > object model of word to understand how to interact with it.
    >
    >
    >
    >
    > "mohadi" <mohadi@pobox.com> wrote in message
    > news:cv2q1b$m4$1@forums.macromedia.com...
    >> Hi Everyone, Does anyone know how I can generate a Microsoft WORD file
    >> from
    >> my ColdFusion application? I want to be able to set the font, size,
    >> margins,
    >> etc. Are there special characters for paragraphs or line breaks? Any info
    >> on
    >> this subject would be greatly appreciated.
    >>
    >
    >

    Bill Sahlas 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