Re: Creating Word Doc

2003-10-16 Thread Marlon Moyer
Thanks for the info Sam.  The namespace declaration was a little 
different so Office XP and up weren't opening it although Office 2000 
would open it now problem.   Everything works now though.

marlon

[EMAIL PROTECTED]

Samuel Neff wrote:

> You can specify what view to open Word in with a little XML within the
>  element:
>
> 
> 
>   Print
> 
> 
>
>
> Make sure you have the MSO namespace declarations at the top of your
> document:
>
> 
> xmlns="http://www.w3.org/TR/REC-html40">
>
> Best regards,
>
> Sam
>
> --
> Blog:  http://www.rewindlife.com
> Chart: http://www.blinex.com/products/charting
> --
>
> > -Original Message-
> > From: Marlon Moyer [mailto:[EMAIL PROTECTED]
> > Sent: Sunday, October 12, 2003 7:47 PM
> > To: CF-Talk
> > Subject: Re: Creating Word Doc
> >
> > I've run into problems with Office XP opening it up in a code view
> > instead of document view allthough the same document opens up
> > beautifully in Word97 or Work2000.  .
> >
> > marlon
> >
> > [EMAIL PROTECTED]
> >
> > Philip Arnold wrote:
> >
> > > I've suggested this before, and it works on the later
> > versions (Word 97
> > > onwards)
> > >
> > > Just change the Content type to be Word, and then send it
> > HTML - Word
> > > and Excel both interpret HTML into the "native" display
> > format, which
> > > makes life a LOT easier
> > >
> > > 
> > >
> > > Don't forget to send a reset before, and abort after the content (in
> > > case you have an OnRequestEnd.cfm)
> > >
> > > HTH
> 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Creating Word Doc

2003-10-13 Thread Deanna Schneider
I do this all the time. It's relatively simple. Create what you want the
document to look like in Word, then save it as an RTF. Open the RTF, figure
out where your dynamic content is, and replace it with the variables you
need.

You do need to learn some very basic RTF syntax, but I've found that I can
usually muck with it to get what I want.

-d

- Original Message - 
From: "Dwayne Cole" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Sunday, October 12, 2003 4:43 AM
Subject: RE: Creating Word Doc

> Thanks for the sugggestions.
>
> I may not need a word document. A RTF document will work fine.  Here's the
use case  scenario:
>
> We have generic consulting agreement and I want to 'fill in the blanks'
with data from the database.
>
> I want the user of the system to be able to modify parts of the agreement
if necessary and save a copy to the local drive.
>
> Currently, I'm generating a HTML version of the consulting agreement.
Occassionally, an extra condition or two may need to be added to or removed
from the agreement and our HTML version is not very freindly to changes.
Likewise with PDF.
>
> If I recall correctly, in Ben's advanced CF5 book, he began with a RTF
file then had ColdFusion scan the file and perform some text replacement
operations.  I tried this approach a little more than a year ago and it
worked OK. Some fields (date fields and fields that appeared more than
once), however, were kinda iffy.  So now I woundering if there are any
smoother aproaches. Or if I should work out the kinks in the scan and
replace approach.
>
> Ultimately I would like to create a component that enables the user to
make their own decision about the agreement format.
>
> The cfcoment solutions seem fine for "creating" the .doc file, but I'm
looking for informaiton that deals with the process of populating the a file
with a mix of static and dynamic content then returning something that the
user can edit.
>
>
>
> Dwayne Cole, MS in MIS, MBA
> Certified Advanced ColdFusion Developer
> 850-591-0212
>
> "It can truly be said that nothing happens until there is vision. But it
is equally true that a vision with no underlying sense of purpose, no
calling, is just a good idea - all "sound and fury, signifying nothing."
The Fifth Discipline - Peter Senge
>
>
>
> -- Original Message --
> From: "Sandy Clark" <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> Date:  Sat, 11 Oct 2003 19:04:25 -0400
>
> >Sam Neff gave a presentation on creating Word Documents without COM at
the
> >Maryland CFUG earlier this year. You might want to check for his
> >presentation on their site.
> >
> >
> >
> >  _
> >
> >From: Dwayne Cole [mailto:[EMAIL PROTECTED]
> >Sent: Saturday, October 11, 2003 3:57 PM
> >To: CF-Talk
> >Subject: Creating Word Doc
> >
> >
> >I'm trying to use the information in the database to generate contracts
in
> >MS word.  Can anyone here refer me to some tutorials or to some custom
tags
> >to help out with this process
> >
> >Dwayne Cole, MS in MIS, MBA
> >Certified Advanced ColdFusion Developer
> >850-591-0212
> >
> >
> >  _
> >
> >
> >
> 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Creating Word Doc

2003-10-13 Thread [EMAIL PROTECTED]
Mr Forta's Advanced ColdFusion MX App Developement book has a good section
on this sort of thing.

 
Also I think there are some articles on Macromedia have a look.

 
-Darren Adams

-Original Message-
From: Dwayne Cole [mailto:[EMAIL PROTECTED]
Sent: 11 October 2003 20:57
To: CF-Talk
Subject: Creating Word Doc

I'm trying to use the information in the database to generate contracts in
MS word.  Can anyone here refer me to some tutorials or to some custom tags
to help out with this process 

Dwayne Cole, MS in MIS, MBA 
Certified Advanced ColdFusion Developer 
850-591-0212 

  _  


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Creating Word Doc

2003-10-12 Thread Samuel Neff
You can specify what view to open Word in with a little XML within the
 element:


 
  Print
 


 
Make sure you have the MSO namespace declarations at the top of your
document:


xmlns="http://www.w3.org/TR/REC-html40">

Best regards,

Sam

--
Blog:  http://www.rewindlife.com
Chart: http://www.blinex.com/products/charting
-- 

> -Original Message-
> From: Marlon Moyer [mailto:[EMAIL PROTECTED] 
> Sent: Sunday, October 12, 2003 7:47 PM
> To: CF-Talk
> Subject: Re: Creating Word Doc
> 
> I've run into problems with Office XP opening it up in a code view 
> instead of document view allthough the same document opens up 
> beautifully in Word97 or Work2000.  .
> 
> marlon
> 
> [EMAIL PROTECTED]
> 
> Philip Arnold wrote:
> 
> > I've suggested this before, and it works on the later 
> versions (Word 97
> > onwards)
> >
> > Just change the Content type to be Word, and then send it 
> HTML - Word
> > and Excel both interpret HTML into the "native" display 
> format, which
> > makes life a LOT easier
> >
> > 
> >
> > Don't forget to send a reset before, and abort after the content (in
> > case you have an OnRequestEnd.cfm)
> >
> > HTH

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Creating Word Doc

2003-10-12 Thread Marlon Moyer
I've run into problems with Office XP opening it up in a code view 
instead of document view allthough the same document opens up 
beautifully in Word97 or Work2000.  .

marlon

[EMAIL PROTECTED]

Philip Arnold wrote:

> I've suggested this before, and it works on the later versions (Word 97
> onwards)
>
> Just change the Content type to be Word, and then send it HTML - Word
> and Excel both interpret HTML into the "native" display format, which
> makes life a LOT easier
>
> 
>
> Don't forget to send a reset before, and abort after the content (in
> case you have an OnRequestEnd.cfm)
>
> HTH
>
> -Original Message-
> From: Dwayne Cole [mailto:[EMAIL PROTECTED]
> Sent: Sunday, October 12, 2003 5:44 AM
> To: CF-Talk
> Subject: RE: Creating Word Doc
>
> Thanks for the sugggestions.
>
> I may not need a word document. A RTF document will work fine.  Here's
> the use case  scenario:
>
> We have generic consulting agreement and I want to 'fill in the blanks'
> with data from the database.
>
> I want the user of the system to be able to modify parts of the
> agreement if necessary and save a copy to the local drive.
>
> Currently, I'm generating a HTML version of the consulting agreement.
> Occassionally, an extra condition or two may need to be added to or
> removed from the agreement and our HTML version is not very freindly to
> changes.  Likewise with PDF.
>
> If I recall correctly, in Ben's advanced CF5 book, he began with a RTF
> file then had ColdFusion scan the file and perform some text replacement
> operations.  I tried this approach a little more than a year ago and it
> worked OK. Some fields (date fields and fields that appeared more than
> once), however, were kinda iffy.  So now I woundering if there are any
> smoother aproaches. Or if I should work out the kinks in the scan and
> replace approach.
>
> Ultimately I would like to create a component that enables the user to
> make their own decision about the agreement format.
>
> The cfcoment solutions seem fine for "creating" the .doc file, but I'm
> looking for informaiton that deals with the process of populating the a
> file with a mix of static and dynamic content then returning something
> that the user can edit.
>
> Dwayne Cole, MS in MIS, MBA
> Certified Advanced ColdFusion Developer
> 850-591-0212
>
> "It can truly be said that nothing happens until there is vision. But it
> is equally true that a vision with no underlying sense of purpose, no
> calling, is just a good idea - all "sound and fury, signifying nothing."
> The Fifth Discipline - Peter Senge
>
> -- Original Message --
> From: "Sandy Clark" <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> Date:  Sat, 11 Oct 2003 19:04:25 -0400
>
> >Sam Neff gave a presentation on creating Word Documents without COM at
> the
> >Maryland CFUG earlier this year. You might want to check for his
> >presentation on their site.
> >
> >
> >
> >  _
> >
> >From: Dwayne Cole [mailto:[EMAIL PROTECTED]
> >Sent: Saturday, October 11, 2003 3:57 PM
> >To: CF-Talk
> >Subject: Creating Word Doc
> >
> >
> >I'm trying to use the information in the database to generate contracts
> in
> >MS word.  Can anyone here refer me to some tutorials or to some custom
> tags
> >to help out with this process
> >
> >Dwayne Cole, MS in MIS, MBA
> >Certified Advanced ColdFusion Developer
> >850-591-0212
> >
> >
> >  _
> >
> >
> >
>
> 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Creating Word Doc

2003-10-12 Thread Jim Davis
Just a note - upon further reading it seems like RTF support will be in
FOP "soon".

 
Jim Davis

 
-Original Message-
From: Jim Davis [mailto:[EMAIL PROTECTED] 
Sent: Sunday, October 12, 2003 12:50 PM
To: CF-Talk
Subject: RE: Creating Word Doc

 
You may want to check this out:

http://xml.apache.org/fop/index.html

It's free, runs GREAT on CFMX and can easily produce PDF docs from XSL
(you do need to learn a new "language - XSL-FO - but it's pretty
simplistic and very HTML/CSS like).  It can produce other formats as
well - but not DOCs, unfortunately.

You can produce very complex, dynamic documents easily with CF.

The editing aspect may preclude it, but it still is worth a look.

Jim Davis

-Original Message-
From: Dwayne Cole [mailto:[EMAIL PROTECTED] 
Sent: Sunday, October 12, 2003 5:43 AM
To: CF-Talk
Subject: RE: Creating Word Doc

Thanks for the sugggestions.

I may not need a word document. A RTF document will work fine.  Here's
the use case  scenario:

We have generic consulting agreement and I want to 'fill in the blanks'
with data from the database.  

I want the user of the system to be able to modify parts of the
agreement if necessary and save a copy to the local drive.  

Currently, I'm generating a HTML version of the consulting agreement.
Occassionally, an extra condition or two may need to be added to or
removed from the agreement and our HTML version is not very freindly to
changes.  Likewise with PDF.

If I recall correctly, in Ben's advanced CF5 book, he began with a RTF
file then had ColdFusion scan the file and perform some text replacement
operations.  I tried this approach a little more than a year ago and it
worked OK. Some fields (date fields and fields that appeared more than
once), however, were kinda iffy.  So now I woundering if there are any
smoother aproaches. Or if I should work out the kinks in the scan and
replace approach.  

Ultimately I would like to create a component that enables the user to
make their own decision about the agreement format.

The cfcoment solutions seem fine for "creating" the .doc file, but I'm
looking for informaiton that deals with the process of populating the a
file with a mix of static and dynamic content then returning something
that the user can edit. 

Dwayne Cole, MS in MIS, MBA
Certified Advanced ColdFusion Developer
850-591-0212

"It can truly be said that nothing happens until there is vision. But it
is equally true that a vision with no underlying sense of purpose, no
calling, is just a good idea - all "sound and fury, signifying nothing."
The Fifth Discipline - Peter Senge

-- Original Message --
From: "Sandy Clark" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Date:  Sat, 11 Oct 2003 19:04:25 -0400

>Sam Neff gave a presentation on creating Word Documents without COM at
the
>Maryland CFUG earlier this year. You might want to check for his
>presentation on their site.
> 
> 
>
>  _  
>
>From: Dwayne Cole [mailto:[EMAIL PROTECTED] 
>Sent: Saturday, October 11, 2003 3:57 PM
>To: CF-Talk
>Subject: Creating Word Doc
>
>
>I'm trying to use the information in the database to generate contracts
in
>MS word.  Can anyone here refer me to some tutorials or to some custom
tags
>to help out with this process 
>
>Dwayne Cole, MS in MIS, MBA 
>Certified Advanced ColdFusion Developer 
>850-591-0212 
>
>
>  _  
>
>
>
  _  

  _  


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Creating Word Doc

2003-10-12 Thread Samuel Neff
Here's a link to a Breezo of my presentation, along with a few thousand
lines of sample code.

http://www.rewindlife.com/archives/32.cfm

I'm also giving a presentation at MAX about integrating CF with Office.  Not
a tutorial on how to do it but rather a comparison of several different
methodologies with pros/cons.  If you're not going to MAX, you'll be able to
download a Breezo from my blog afterwards.

HTH,

Sam

--
Blog:  http://www.rewindlife.com
Chart: http://www.blinex.com/products/charting
-- 

> -Original Message-
> From: Sandy Clark [mailto:[EMAIL PROTECTED] 
> Sent: Saturday, October 11, 2003 7:04 PM
> To: CF-Talk
> Subject: RE: Creating Word Doc
> 
> Sam Neff gave a presentation on creating Word Documents 
> without COM at the
> Maryland CFUG earlier this year. You might want to check for his
> presentation on their site.
> 
>   _  
> 
> From: Dwayne Cole [mailto:[EMAIL PROTECTED] 
> Sent: Saturday, October 11, 2003 3:57 PM
> To: CF-Talk
> Subject: Creating Word Doc
> 
> I'm trying to use the information in the database to generate 
> contracts in
> MS word.  Can anyone here refer me to some tutorials or to 
> some custom tags
> to help out with this process 
> 
> Dwayne Cole, MS in MIS, MBA 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Creating Word Doc

2003-10-12 Thread Jim Davis
You may want to check this out:

 
http://xml.apache.org/fop/index.html

 
It's free, runs GREAT on CFMX and can easily produce PDF docs from XSL
(you do need to learn a new "language - XSL-FO - but it's pretty
simplistic and very HTML/CSS like).  It can produce other formats as
well - but not DOCs, unfortunately.

 
You can produce very complex, dynamic documents easily with CF.

 
The editing aspect may preclude it, but it still is worth a look.

 
Jim Davis

 
-Original Message-
From: Dwayne Cole [mailto:[EMAIL PROTECTED] 
Sent: Sunday, October 12, 2003 5:43 AM
To: CF-Talk
Subject: RE: Creating Word Doc

 
Thanks for the sugggestions.

I may not need a word document. A RTF document will work fine.  Here's
the use case  scenario:

We have generic consulting agreement and I want to 'fill in the blanks'
with data from the database.  

I want the user of the system to be able to modify parts of the
agreement if necessary and save a copy to the local drive.  

Currently, I'm generating a HTML version of the consulting agreement.
Occassionally, an extra condition or two may need to be added to or
removed from the agreement and our HTML version is not very freindly to
changes.  Likewise with PDF.

If I recall correctly, in Ben's advanced CF5 book, he began with a RTF
file then had ColdFusion scan the file and perform some text replacement
operations.  I tried this approach a little more than a year ago and it
worked OK. Some fields (date fields and fields that appeared more than
once), however, were kinda iffy.  So now I woundering if there are any
smoother aproaches. Or if I should work out the kinks in the scan and
replace approach.  

Ultimately I would like to create a component that enables the user to
make their own decision about the agreement format.

The cfcoment solutions seem fine for "creating" the .doc file, but I'm
looking for informaiton that deals with the process of populating the a
file with a mix of static and dynamic content then returning something
that the user can edit. 

Dwayne Cole, MS in MIS, MBA
Certified Advanced ColdFusion Developer
850-591-0212

"It can truly be said that nothing happens until there is vision. But it
is equally true that a vision with no underlying sense of purpose, no
calling, is just a good idea - all "sound and fury, signifying nothing."
The Fifth Discipline - Peter Senge

-- Original Message --
From: "Sandy Clark" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Date:  Sat, 11 Oct 2003 19:04:25 -0400

>Sam Neff gave a presentation on creating Word Documents without COM at
the
>Maryland CFUG earlier this year. You might want to check for his
>presentation on their site.
> 
> 
>
>  _  
>
>From: Dwayne Cole [mailto:[EMAIL PROTECTED] 
>Sent: Saturday, October 11, 2003 3:57 PM
>To: CF-Talk
>Subject: Creating Word Doc
>
>
>I'm trying to use the information in the database to generate contracts
in
>MS word.  Can anyone here refer me to some tutorials or to some custom
tags
>to help out with this process 
>
>Dwayne Cole, MS in MIS, MBA 
>Certified Advanced ColdFusion Developer 
>850-591-0212 
>
>
>  _  
>
>
>
  _  


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Creating Word Doc

2003-10-12 Thread Philip Arnold
I've suggested this before, and it works on the later versions (Word 97
onwards)

Just change the Content type to be Word, and then send it HTML - Word
and Excel both interpret HTML into the "native" display format, which
makes life a LOT easier



Don't forget to send a reset before, and abort after the content (in
case you have an OnRequestEnd.cfm)

HTH

-Original Message-
From: Dwayne Cole [mailto:[EMAIL PROTECTED]
Sent: Sunday, October 12, 2003 5:44 AM
To: CF-Talk
Subject: RE: Creating Word Doc

Thanks for the sugggestions.

I may not need a word document. A RTF document will work fine.  Here's
the use case  scenario:

We have generic consulting agreement and I want to 'fill in the blanks'
with data from the database.

I want the user of the system to be able to modify parts of the
agreement if necessary and save a copy to the local drive.

Currently, I'm generating a HTML version of the consulting agreement.
Occassionally, an extra condition or two may need to be added to or
removed from the agreement and our HTML version is not very freindly to
changes.  Likewise with PDF.

If I recall correctly, in Ben's advanced CF5 book, he began with a RTF
file then had ColdFusion scan the file and perform some text replacement
operations.  I tried this approach a little more than a year ago and it
worked OK. Some fields (date fields and fields that appeared more than
once), however, were kinda iffy.  So now I woundering if there are any
smoother aproaches. Or if I should work out the kinks in the scan and
replace approach.

Ultimately I would like to create a component that enables the user to
make their own decision about the agreement format.

The cfcoment solutions seem fine for "creating" the .doc file, but I'm
looking for informaiton that deals with the process of populating the a
file with a mix of static and dynamic content then returning something
that the user can edit.

Dwayne Cole, MS in MIS, MBA
Certified Advanced ColdFusion Developer
850-591-0212

"It can truly be said that nothing happens until there is vision. But it
is equally true that a vision with no underlying sense of purpose, no
calling, is just a good idea - all "sound and fury, signifying nothing."
The Fifth Discipline - Peter Senge

-- Original Message --
From: "Sandy Clark" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Date:  Sat, 11 Oct 2003 19:04:25 -0400

>Sam Neff gave a presentation on creating Word Documents without COM at
the
>Maryland CFUG earlier this year. You might want to check for his
>presentation on their site.
>
>
>
>  _
>
>From: Dwayne Cole [mailto:[EMAIL PROTECTED]
>Sent: Saturday, October 11, 2003 3:57 PM
>To: CF-Talk
>Subject: Creating Word Doc
>
>
>I'm trying to use the information in the database to generate contracts
in
>MS word.  Can anyone here refer me to some tutorials or to some custom
tags
>to help out with this process
>
>Dwayne Cole, MS in MIS, MBA
>Certified Advanced ColdFusion Developer
>850-591-0212
>
>
>  _
>
>
>

 
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Creating Word Doc

2003-10-12 Thread Dwayne Cole
Thanks for the sugggestions.

I may not need a word document. A RTF document will work fine.  Here's the use case  scenario:

We have generic consulting agreement and I want to 'fill in the blanks' with data from the database.  

I want the user of the system to be able to modify parts of the agreement if necessary and save a copy to the local drive.  

Currently, I'm generating a HTML version of the consulting agreement. Occassionally, an extra condition or two may need to be added to or removed from the agreement and our HTML version is not very freindly to changes.  Likewise with PDF.

If I recall correctly, in Ben's advanced CF5 book, he began with a RTF file then had ColdFusion scan the file and perform some text replacement operations.  I tried this approach a little more than a year ago and it worked OK. Some fields (date fields and fields that appeared more than once), however, were kinda iffy.  So now I woundering if there are any smoother aproaches. Or if I should work out the kinks in the scan and replace approach.  

Ultimately I would like to create a component that enables the user to make their own decision about the agreement format.

The cfcoment solutions seem fine for "creating" the .doc file, but I'm looking for informaiton that deals with the process of populating the a file with a mix of static and dynamic content then returning something that the user can edit. 

Dwayne Cole, MS in MIS, MBA
Certified Advanced ColdFusion Developer
850-591-0212

 
"It can truly be said that nothing happens until there is vision. But it is equally true that a vision with no underlying sense of purpose, no calling, is just a good idea - all "sound and fury, signifying nothing."  The Fifth Discipline - Peter Senge

-- Original Message --
From: "Sandy Clark" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Date:  Sat, 11 Oct 2003 19:04:25 -0400

>Sam Neff gave a presentation on creating Word Documents without COM at the
>Maryland CFUG earlier this year. You might want to check for his
>presentation on their site.
> 
> 
>
>  _  
>
>From: Dwayne Cole [mailto:[EMAIL PROTECTED] 
>Sent: Saturday, October 11, 2003 3:57 PM
>To: CF-Talk
>Subject: Creating Word Doc
>
>
>I'm trying to use the information in the database to generate contracts in
>MS word.  Can anyone here refer me to some tutorials or to some custom tags
>to help out with this process 
>
>Dwayne Cole, MS in MIS, MBA 
>Certified Advanced ColdFusion Developer 
>850-591-0212 
>
>
>  _  
>
>
>
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Creating Word Doc

2003-10-11 Thread Sandy Clark
Sam Neff gave a presentation on creating Word Documents without COM at the
Maryland CFUG earlier this year. You might want to check for his
presentation on their site.

  _  

From: Dwayne Cole [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 11, 2003 3:57 PM
To: CF-Talk
Subject: Creating Word Doc

I'm trying to use the information in the database to generate contracts in
MS word.  Can anyone here refer me to some tutorials or to some custom tags
to help out with this process 

Dwayne Cole, MS in MIS, MBA 
Certified Advanced ColdFusion Developer 
850-591-0212 

  _  


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Creating Word Doc

2003-10-11 Thread Jim Davis
CFComet.com should help a lot -but remember that it's not only the
application user that need word installed - it's the server as well.
Most hosts won't install word on their servers and many internal
security organizations won't either.

 
Jim Davis

 
-Original Message-
From: Snake Hollywood [mailto:[EMAIL PROTECTED] 
Sent: Saturday, October 11, 2003 4:36 PM
To: CF-Talk
Subject: RE: Creating Word Doc

 
www.cfcomet.com

it will probably rely on users having word installed to do it tho.

Russ Michaels
Macromedia/Allaire Certified ColdFusion Developer

CFDeveloper
The free resource and community for ColdFusion developer.
http://www.cfdeveloper.co.uk  

Join the CFDeveloper discussion lists.
To subscribe send an e-mail to [EMAIL PROTECTED]

-Original Message-
From: Dwayne Cole [mailto:[EMAIL PROTECTED] 
Sent: 11 October 2003 20:57
To: CF-Talk
Subject: Creating Word Doc

I'm trying to use the information in the database to generate contracts
in MS word.  Can anyone here refer me to some tutorials or to some
custom tags to help out with this process 

Dwayne Cole, MS in MIS, MBA 
Certified Advanced ColdFusion Developer 
850-591-0212 

  _  

  _  


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Creating Word Doc

2003-10-11 Thread Snake Hollywood
www.cfcomet.com

 
it will probably rely on users having word installed to do it tho.

 
Russ Michaels
Macromedia/Allaire Certified ColdFusion Developer

 
CFDeveloper
The free resource and community for ColdFusion developer.
http://www.cfdeveloper.co.uk  

Join the CFDeveloper discussion lists.
To subscribe send an e-mail to [EMAIL PROTECTED]

-Original Message-
From: Dwayne Cole [mailto:[EMAIL PROTECTED] 
Sent: 11 October 2003 20:57
To: CF-Talk
Subject: Creating Word Doc

I'm trying to use the information in the database to generate contracts
in MS word.  Can anyone here refer me to some tutorials or to some
custom tags to help out with this process 

Dwayne Cole, MS in MIS, MBA 
Certified Advanced ColdFusion Developer 
850-591-0212 

  _  


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: Creating Word Doc

2003-10-11 Thread Bryan Stevenson
If Word is not a requirement and you can use PDFtry the HTML2PDF3it is So easy to use ;-)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder & Director
www.cfug-vancouverisland.com
  - Original Message - 
  From: Dwayne Cole 
  To: CF-Talk 
  Sent: Saturday, October 11, 2003 12:57 PM
  Subject: Creating Word Doc

  I'm trying to use the information in the database to generate contracts in MS word.  Can anyone here refer me to some tutorials or to some custom tags to help out with this process 

  Dwayne Cole, MS in MIS, MBA 
  Certified Advanced ColdFusion Developer 
  850-591-0212 


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Creating Word Doc

2003-10-11 Thread Dwayne Cole
I'm trying to use the information in the database to generate contracts in MS word.  Can anyone here refer me to some tutorials or to some custom tags to help out with this process 

Dwayne Cole, MS in MIS, MBA 
Certified Advanced ColdFusion Developer 
850-591-0212 


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]