CF and Word.Application

2011-09-29 Thread Richard White
Hi does anyone know of any good examples on writing/editing text in a word document using application.word COM. I am using the MSDN library but tearing my hair out just trying to add new sentences and replace text. Thanks

Re: CF and Word.Application

2011-09-29 Thread Gerald Guido
This is oold The code is in ALL CAPS but should get you going. http://www.cfregex.com/cfcomet/word/ HTH G! On Thu, Sep 29, 2011 at 7:05 AM, Richard White rich...@j7is.co.uk wrote: Hi does anyone know of any good examples on writing/editing text in a word document using

Re: Coldfusion Hosting

2011-09-29 Thread Paul Smith
Yesterday, hosting.com informs me they are going out of the ColdFusion hosting business. This thread has been very useful. Thank you all. I've been with ColdFusion from the VERY beginning and am too old to change now. AHPhostng.net's ColdFusion VPS for $99 looks good to me, but I wonder if

RE: Coldfusion Hosting

2011-09-29 Thread Paul Giesenhagen
We use and many of our clients use JWeb Development contact j...@jwebdevelopment.com for Shared/VPS/Dedicated and other options . They are a good group and good at what they do! Paul Giesenhagen Quill Design -Original Message- From: Paul Smith [mailto:psmit...@gmail.com] Sent:

RE: Coldfusion Hosting

2011-09-29 Thread Terry Troxel
I have been using a vps at AHPHOSTING.net for well over 3 years now and have been down a grand total of 4 hours during 3 events. I am very happy with my experience there. Sometimes as in this case smaller is better. And also in this case COLDFUSION is PRIMARY! Terry -Original Message-

Commons Logging issues

2011-09-29 Thread Paul Giesenhagen
I am not very versed in the question I am about to ask - so please give me some latitude as I may not be asking the right question or assuming too much about the problem. We're trying to work with Batik and we're loading up a number of classes - one particular I think is the issue is the

Re: Commons Logging issues

2011-09-29 Thread Russ Michaels
if you remove the duplicated class file then it wont be able to load it, and will then hopefully use the one CF has loaded instead. On Thu, Sep 29, 2011 at 3:55 PM, Paul Giesenhagen p...@quilldesign.com wrote: I am not very versed in the question I am about to ask - so please give me some

RE: CF and Word.Application

2011-09-29 Thread Richard (J7 Group)
Perfect, thanks!!! -Original Message- From: Gerald Guido [mailto:gerald.gu...@gmail.com] Sent: 29 September 2011 14:51 To: cf-talk Subject: Re: CF and Word.Application This is oold The code is in ALL CAPS but should get you going. http://www.cfregex.com/cfcomet/word/ HTH G! On

RE: Commons Logging issues

2011-09-29 Thread Paul Giesenhagen
SO there was a directory that had the commons logging files in it .. removed those - restarted the CF Service and still have the same error - so at this time, it I believe is just loading the CF defaults. ~| Order the Adobe

RE: Coldfusion Hosting

2011-09-29 Thread Rick Faircloth
www.KickAssVPS.com Great products, great service, great support. Customer for about 3 years now. -Original Message- From: Terry Troxel [mailto:terry.tro...@gmail.com] Sent: Thursday, September 29, 2011 10:55 AM To: cf-talk Subject: RE: Coldfusion Hosting I have been using a vps at

Error loading: C:/ColdFusion9/runtime/jre\bin\server\jvm.dll

2011-09-29 Thread David Mineer Jr
I just got a new computer yesterday. Setup was easy. Everything went on the new computer in just a few hours. Except coldfusion. For the life of me I cannot get coldfusion 9.0.1 installed and running. Installing coldfusion 9.0 is no problem and it works. However, the upgrade from 9.0 to

Re: Error loading: C:/ColdFusion9/runtime/jre\bin\server\jvm.dll

2011-09-29 Thread Russ Michaels
check the update log and it will tell you what failed. you also need to make sure you have ALL the cf related services and IIS stopped when you update. On Thu, Sep 29, 2011 at 4:50 PM, David Mineer Jr min...@gmail.com wrote: I just got a new computer yesterday. Setup was easy.  Everything

Re: Error loading: C:/ColdFusion9/runtime/jre\bin\server\jvm.dll

2011-09-29 Thread David Mineer Jr
The update completes succesfully. It restarts all CF services (I do stop them before upgrade) except the main one. And running the webserver configuration tool or starting the Main CF 9 service both don't work. Doing those from the command line give the error: Error loading:

Can JS read CGI Environmental Variables?

2011-09-29 Thread Rick Faircloth
Ok... I'm tired of searching. Can JS read CGI variables? e.g. var referer = cgi.http_referer.slice('/').pop(); if ( referer === 'index.cfm' ) etc. Rick ~| Order the Adobe Coldfusion Anthology now!

multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Steve LaBadie
I have never come across this before. I was asked to create a form that ask for all attendees that are coming to an event, which means multiple emails addresses using CFMAIL. Is this possible? Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 http://www.esu.edu

Re: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread David Mineer Jr
You would just loop over the list of emails and use cfmail inside the loop to send, right? I could be misunderstanding exactly what you are asking. --- David Mineer Jr - The critical ingredient is getting off your butt and doing something. It's as simple as that. A lot of

RE: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Steve LaBadie
I have 4 places reserved for attendees. I am asking for each of their email addresses labelEmail:/labelinput name=email1 type=text / labelEmail:/labelinput name=email2 type=text / labelEmail:/labelinput name=email3 type=text / labelEmail:/labelinput name=email4 type=text / Are you saying to put

Re: Coldfusion Hosting

2011-09-29 Thread Dean Lawrence
Paul, do you mean GoDaddy.com? I hadn't heard anything regarding hosting.com discontinuing ColdFusion hosting. I just checked their site and they still have it listed. Thanks, Dean On Thu, Sep 29, 2011 at 10:13 AM, Paul Smith psmit...@gmail.com wrote: Yesterday, hosting.com informs me they

Re: Can JS read CGI Environmental Variables?

2011-09-29 Thread Judah McAuley
Not natively that I'm aware of, however, it is easy to deal with. script cfoutput var referer = #cgi.http_referer#; /cfoutput referer = referer.slice('/').pop(); if ( referer == 'index.cfm' ) etc /script On Thu, Sep 29, 2011 at 10:30 AM, Rick Faircloth r...@whitestonemedia.com wrote: Ok...

Re: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Alan Rother
So, why do you need to use their email addresses as the from address? The TO or CC addresses, sure, even the REPLY TO I can see using all of the addresses. Can't you just use some generic address for the FROM? Like noreplymyf...@esu.edu What goal are you trying to accomplish? That might be

RE: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Steve LaBadie
Honestly, this is not my goal. I was given a day's noticed to re-create our paper Orientation Registration form into a text-based email submission. The form has 4 areas for up to 4 attendees to register. They want me to capture all emails addresses. I don't think this is possible?? Steve

Re: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Phillip Duba
Steve, then treat each area of registration as its own registration, looping over the email logic for each attendee. You can't have more than one from address in an email. CF doesn't throw an error on it but the SMTP server will. I know this from experience in a malformed email from

Re: Can JS read CGI Environmental Variables?

2011-09-29 Thread Aaron
If you really wanted JS to have those though, you could put scriptvar CGI = #serializeJSON(CGI)#;/script in your cfm's output. On Thu, Sep 29, 2011 at 12:50 PM, Judah McAuley ju...@wiredotter.comwrote: Not natively that I'm aware of, however, it is easy to deal with. script cfoutput var

RE: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Robert Harrison
Something like this should work. 1. Use the same field name on each field. The result of that will be that when you submit, you'll send a comma delimited list of email values labelEmail:/label input name=email type=text / input name=email type=text / input name=email type=text / input

Re: Error loading: C:/ColdFusion9/runtime/jre\bin\server\jvm.dll

2011-09-29 Thread Russ Michaels
try updating your msvcr71.dll to a newer version On Thu, Sep 29, 2011 at 5:14 PM, David Mineer Jr min...@gmail.com wrote: The update completes succesfully. It restarts all CF services (I do stop them before upgrade) except the main one.  And running the webserver configuration tool or

Re: Coldfusion Hosting

2011-09-29 Thread Rick Mason
Paul, I just got off the phone with the head of the shared hosting division of Hosting.com. He assured me they have no plans to discontinue ColdFusion. In fact he said they just announced recently they had added ColdFusion 9 hosting to their plans. Please tell us who gave you that information

Re: Coldfusion Hosting

2011-09-29 Thread Matthew Williams
HostMySite tweeted me on this. Neither HMS or Hosting.com has discontinued CF hosting. -- Matthew Williams Geodesic GraFX www.geodesicgrafx.com/blog twitter.com/ophbalance ~| Order the Adobe Coldfusion Anthology now!

Re: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Russ Michaels
if all you want to do is capture the email address then you don't need to do anything, just store the value of form.email. Surely if the user has 4 email addresses you don't want to send a copy of the form to all 4 of them or send yourself 4 copies of the email? I would also suggest you DO NOT

Java Files in CF

2011-09-29 Thread Robert Harrison
I have a guy writing a procedure that will allow students to automatically log-in to various sites via buttons in the student portal (a secure CF site on my server requiring log-in credentials). He wrote the code for this in java and provided two .jar files. Now he's asking me to copy the

Re: Error loading: C:/ColdFusion9/runtime/jre\bin\server\jvm.dll

2011-09-29 Thread David Mineer Jr
Where can I get that from? --- David Mineer Jr - The critical ingredient is getting off your butt and doing something. It's as simple as that. A lot of people have ideas, but there are few who decide to do something about them now. Not tomorrow. Not next week. But today. The

Re: Java Files in CF

2011-09-29 Thread Aaron
You can put the files anywhere you like. All you need to do is add the path to the jars in your classpath in CF Admin, and yes you will need to bounce ColdFusion afterward. Aaron DeRenard On Thu, Sep 29, 2011 at 1:20 PM, Robert Harrison rob...@austin-williams.com wrote: I have a guy

RE: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Robert Harrison
I thought from what I read he wanted to send an email to each of the addresses in the form... that's why I suggested the loop. I might have misunderstood what he wanted to do. ~| Order the Adobe Coldfusion Anthology now!

Re: Java Files in CF

2011-09-29 Thread Russ Michaels
put then in the lib folder, or you could always use JavaLoader to do within CF. On Thu, Sep 29, 2011 at 7:20 PM, Robert Harrison rob...@austin-williams.com wrote: I have a guy writing a procedure that will allow students to automatically log-in to various sites via buttons in the student

Re: Java Files in CF

2011-09-29 Thread Alan Rother
You can also load the JARS on demand using Mark Mandel's JavaLoader project http://javaloader.riaforge.org/ -- Alan Rother Manager, Phoenix Cold Fusion User Group, www.AZCFUG.org Twitter: @AlanRother ~| Order the Adobe

Re: SMS Apps

2011-09-29 Thread Bryan Stevenson
Thanks again Pauland yes it is time I RTFM ;-) (no offence takenI know I should) Diving into the code today...so it's time!! Cheers On Thu, 2011-09-29 at 08:36 +0700, Paul Hastings wrote: On 9/29/2011 1:28 AM, Bryan Stevenson wrote: So I suppose I could just re-point the existing

RE: Java Files in CF

2011-09-29 Thread Robert Harrison
you could always use JavaLoader to do within CF. Sound like a preference. How would I do that? Robert B. Harrison Director of Interactive Services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022 http://www.austin-williams.com

MyFax and CFMail

2011-09-29 Thread Jeanmarie Richardson
Hi - I am using CFMAIL to send a PDF attachment to the MyFax.com fax gateway. The problem is that when the fax goes through myfax.com, the PDF attachments are preceeded by two blank pages. Myfax.com says that I need to send the email in plain text format. I am have tried using the cfmail

RE: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Steve LaBadie
I apologize if I haven't explained myself properly. There is space for 4 attendees to register for the event. The owner of the form wants to gather all of the info inputted into the form. Parent/guardian #1 Address Phone Email Parent/guardian #2 Address Phone Email Parent/guardian #3 Address

Re: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Russ Michaels
the form builders i mentioned, specifically formassembly will do exactly this, in addiiton it allows you to give the user the option to add new section, so you would create only fields for 1 attendee with a button to add more attendees and the form builder does everything else for you. If you

Re: Java Files in CF

2011-09-29 Thread Russ Michaels
here you go http://javaloader.riaforge.org/ Russ On Thu, Sep 29, 2011 at 7:27 PM, Robert Harrison rob...@austin-williams.com wrote: you could always use JavaLoader to do within CF. Sound like a preference. How would I do that? Robert B. Harrison Director of Interactive Services Austin

RE: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Robert Harrison
I still don't understand what you want to do from that. What's the action you want to take? Do you want to send mail to the people in the form? Do you want to send an email to someone else with the form data in the email? What's the goal? -Original Message- From: Steve LaBadie

RE: Java Files in CF

2011-09-29 Thread Robert Harrison
Thanks Robert B. Harrison Director of Interactive Services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022 http://www.austin-williams.com Great advertising can't be either/or.  It must be . Plug in to our blog: AW Unplugged

Re: Error loading: C:/ColdFusion9/runtime/jre\bin\server\jvm.dll

2011-09-29 Thread Russ Michaels
here you go http://lmgtfy.com/?q=download+msvcr71.dll On Thu, Sep 29, 2011 at 12:10 PM, Russ Michaels r...@michaels.me.uk wrote: try updating your msvcr71.dll to a newer version On Thu, Sep 29, 2011 at 5:14 PM, David Mineer Jr min...@gmail.com wrote: The update completes

RE: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Steve LaBadie
Robert, The goal is to send the form data via email to the owner of the form, not to the people registering. Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 http://www.esu.edu slaba...@esu.edu -Original Message- From: Robert Harrison

Re: Error loading: C:/ColdFusion9/runtime/jre\bin\server\jvm.dll

2011-09-29 Thread David Mineer Jr
Everything I found to download was the same version as the one on my machine. I put it in the directory. I restarted and registered the downloaded file. But still same problem. I installed the latest Java JDK because I saw that in a thread somewhere. This is kicking my but. All the other

Re: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Alan Rother
It's not elegant (and it REALLY should save to a database as well..), but I knocked it out in about 3 mins - it'll do the work you need it to - just change some of the things like TO and FROM and you're done cfif StructKeyExists(form, fieldnames cfmail to=some...@some.edu from=norep...@some.edu

RE: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Steve LaBadie
Thank you for your work on this Alan. I really appreciate it. Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 http://www.esu.edu slaba...@esu.edu -Original Message- From: Alan Rother [mailto:alan.rot...@gmail.com] Sent: Thursday, September 29, 2011 2:51 PM To:

RE: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Robert Harrison
That's easy. Use unique names on each form field as you originally showed... e.g., the names I'm illustrating below. Submit to a page that has: cfmail from=m...@domain.com to=y...@domain.com Here are the registrants: Parent/guardian 1 : #form.name1# Address: #form.address1# Phone:

RE: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Steve LaBadie
duh Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 http://www.esu.edu slaba...@esu.edu -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: Thursday, September 29, 2011 3:01 PM To: cf-talk Subject: RE: multiple email addresses in

Re: Error loading: C:/ColdFusion9/runtime/jre\bin\server\jvm.dll

2011-09-29 Thread Russ Michaels
do you have any other servers or machines you could copy the file from ? On Thu, Sep 29, 2011 at 7:49 PM, David Mineer Jr min...@gmail.com wrote: Everything I found to download was the same version as the one on my machine.  I put it in the directory. I restarted and registered the

RE: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Robert Harrison
That was what you wanted... yes? Robert B. Harrison Director of Interactive Services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022 http://www.austin-williams.com Great advertising can't be either/or.  It must be . Plug in to our

Re: Coldfusion Hosting

2011-09-29 Thread Jordan Michaels
I wonder if they're simply re-branding it. I notice the hostmysite.com site is back with the CF plan right out there in front. Are they just moving it to a different brand maybe? Either way, glad to hear they're investing in CF. ;) Warm regards, Jordan Michaels On 09/29/2011 11:10 AM, Rick

Re: Coldfusion Hosting

2011-09-29 Thread Alan Rother
Our CFUG meeting was actually sponsored by The SBA (formerly CrystalTech) last night. (http://webservices.thesba.com/coldfusion9.aspx) They wanted to re-iterate that they still are hosting ColdFusion and are planning to continue investing in CF tech. I've always had good experiences with them.

RE: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Steve LaBadie
Yes Robert, instead of using form=#form.email# just put mine in there. Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 http://www.esu.edu slaba...@esu.edu -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: Thursday, September 29,

RE: multiple email addresses in cfmail FROM attribute

2011-09-29 Thread Robert Harrison
Ok. Have a good day then. It's almost Friday :-) Robert B. Harrison Director of Interactive Services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 P : 631.231.6600 Ext. 119 F : 631.434.7022 http://www.austin-williams.com Great advertising can't be either/or.  It must be .

Re: Error loading: C:/ColdFusion9/runtime/jre\bin\server\jvm.dll

2011-09-29 Thread David Mineer Jr
K, hold the phone. Looks like I installed 64 bit cf and downloaded and tried to install the 32 bit 9.0.1 upgrade file. So I'm a complete idiot. I get a new computer and apparently I can't even think straight cause I am so excited. Sorry. Thanks for trying to help me. Apparently I am beyond

Re: Coldfusion Hosting

2011-09-29 Thread Max Hamby
They aren't going out of the CF hosting business. They are discontinuing their Windows VPS CF Builder product offering (I got the notifications last night as well). Personally, I'm not very happy with the short notice of the termination. If you're not able to meet a short time frame (IMO) for

Re: Coldfusion Hosting

2011-09-29 Thread Bryan Stevenson
Max they pulled the same BS on us in the springwe moved to Jordan at Viviotech and are SUPER pleased with them to date. After the hostmysite/host.com mergerthe goodness of hostmysite was swallowed by the badness of hosting.comit was painfully obvious and truly amazing how quickly an

Re: Coldfusion Hosting

2011-09-29 Thread Max Hamby
I had stayed with hosting.com out of convenience I knew I was paying a premium but everything is tuned just right so I've left it alone. I guess I should have known it was coming. I'm looking pretty hard at Viviotech now (thanks for the recommendation). I'm also considering Linode. ~Max