Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
mohadi #1
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
-
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... -
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,... -
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... -
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... -
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... -
Terry Bankert #2
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
-
Bill Sahlas #3
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



Reply With Quote

