Word Object

2004-01-25 Thread Taco Fleur
I am looking to convert some VB syntax to work with the Word Object, lines like; Selection.InsertBreak Type:=wdPageBreak Is it even possible to work with every method/property of the word object in ColdFusion? If so, how would the above translate in ColdFusion? Taco Fleur Blog   http

MS Word Object

2003-03-11 Thread Robert Bailey
Hey guys. Playing around here, and trying to count the words in a MS Word document. It is returning a number, but not the amount of words in the doc, as when I open it up using word, and look at the count there, it is a few off from when I use the object. Maybe I am going it wrong. I created a sm

Re: Word Object

2004-01-26 Thread Dan O'Keefe
Taco Fleur wrote: > I am looking to convert some VB syntax to work with the Word Object, lines > like; > > > Selection.InsertBreak Type:=wdPageBreak > > > Is it even possible to work with every method/property of the word > object in > ColdFusion? If so, ho

RE: Word Object

2004-01-26 Thread Taco Fleur
of the word object in ColdFusion? Taco Fleur Blog   http://www.tacofleur.com/index/blog/ Methodology http://www.tacofleur.com/index/methodology/ 0421 851 786 Tell me and I will forget Show me and I will remember Teach me and I will learn -Original Message- From: Dan O'Keefe [m

Re: Word Object

2004-01-26 Thread Dan O'Keefe
uestion was > Is it even possible to work with **every** method/property of the word > object in ColdFusion? > Doesn't one of the articles on that site, or a link point to the DOM on Microsoft's website. Theoretically, I do not see any reason why you would be able to use

Re: Word Object

2004-01-26 Thread Dan O'Keefe
Taco Fleur wrote: > Another question was > Is it even possible to work with **every** method/property of the word > object in ColdFusion? This is what I was thinking of: http://msdn.microsoft.com/library/default.asp?url=""> Dan [Todays Threads] [This Message]

RE: Word Object

2004-01-26 Thread Taco Fleur
Dan, I was thinking about a particular one to start with, i.e. Selection.InsertBreak Type:=wdPageBreak I have no problem creating any code with the word object in VB syntax, I do have a problem converting the syntax to CF, which is still my open question: Is it even possible to work with

Re: Word Object

2004-01-26 Thread Dan O'Keefe
Taco Fleur wrote: > Dan, > > > I was thinking about a particular one to start with, i.e. > Selection.InsertBreak Type:=wdPageBreak > I have no problem creating any code with the word object in VB syntax, > I do > have a problem converting the syntax to CF, which is s

Re: Word Object

2004-01-26 Thread Dan O'Keefe
> Try running Selection.InsertBreak Type:=wdPageBreak in CF, see what happens, its valid in VB. If the object was named objWord, try: objWord = Selection.InsertBreak("wdPageBreak"); |I am assuming you found this page already? Did you post this question on CFCOMET? http://msdn.microsoft.com/l

RE: Word Object

2004-01-26 Thread Ian Skinner
- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA -Original Message- From: Taco Fleur [mailto:[EMAIL PROTECTED] Sent: Monday, January 26, 2004 12:43 PM To: CF-Talk Subject: RE: Word Object Dan, I was thinking about a particular one to start

RE: Word Object

2004-01-26 Thread Taco Fleur
0421 851 786 Tell me and I will forget Show me and I will remember Teach me and I will learn -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Tuesday, 27 January 2004 7:22 AM To: CF-Talk Subject: RE: Word Object Other then the generally bad mojo of using a word

RE: Word Object

2004-01-26 Thread Samuel R. Neff
> Sent: Monday, January 26, 2004 4:22 PM > To: CF-Talk > Subject: RE: Word Object > > Other then the generally bad mojo of using a word come object > on a web-site/server (even Microsoft says this is a bad and > unsupported idea).  When I was trying to do it last year, I &g

RE: Word Object

2004-01-26 Thread Taco Fleur
/methodology/ 0421 851 786 Tell me and I will forget Show me and I will remember Teach me and I will learn -Original Message- From: Samuel R. Neff [mailto:[EMAIL PROTECTED] Sent: Tuesday, 27 January 2004 8:03 AM To: CF-Talk Subject: RE: Word Object The code Selection.InsertBreak Type

RE: MS Word Object

2003-03-11 Thread Mike Townend
ECTED] Sent: Tuesday, March 11, 2003 18:49 To: CF-Talk Subject: MS Word Object Hey guys. Playing around here, and trying to count the words in a MS Word document. It is returning a number, but not the amount of words in the doc, as when I open it up using word, and look at the count there, it is

RE: MS Word Object

2003-03-11 Thread Robert Bailey
Original Message- From: Mike Townend [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 2:23 PM To: CF-Talk Subject: RE: MS Word Object Try prototyping how to do it in the vba editor (alt-F11) in word, that's how I always do stuff in word, then you get intellisense and help etc. The

RE: MS Word Object

2003-03-11 Thread Robert Bailey
OK, I have tested this code on 3 machines, all get the wrong count. Anyone know what is going on? Thanks! Robert Bailey Famous for nothing -Original Message- From: Robert Bailey [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 2:43 PM To: CF-Talk Subject: RE: MS Word Object