Search the web
Sign In
New User? Sign Up
coldfusion-howto · ColdFusion Tips Tutorial Help Questions
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 41536 - 41565 of 42948   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
41536
I need to know how i can take several pdf's and combine then into one big pdf file and make it downloadable. Im using MX7 on windows. thanks...
Capri
nycapri
Offline Send Email
Sep 3, 2007
5:38 pm
41537
Doesn anyone know what is the RegEx in coldfusion to return all characters between "[MergeField" and "]" Examples: [MergeField FirstName] [MergeField LastName]...
Ernest Breau
cf_ernie
Online Now Send Email
Sep 4, 2007
11:27 am
41538
Look into a program called AppendPDF then use cfexecute to call this program Capri <nycapri@...> wrote: I need to know how i can take several...
Terrence Thomas
tthomas101a
Offline Send Email
Sep 4, 2007
12:09 pm
41539
Try this... ReReplaceNoCase(str, "\[[^MergeField ][^\]]+\]", "replaced", "All") -hankcfman ... From: Ernest Breau <ernest.breau@...> To:...
Hank Miller
hankcfman
Offline Send Email
Sep 4, 2007
2:14 pm
41540
... characters between "[MergeField" and "]" Hi, This is pretty easy if you use CF_Reextract: See...
Claude Schneegans
schneeca
Offline Send Email
Sep 4, 2007
4:40 pm
41541
Hello all, Recently unInstalled IIS and installed apache 2.2. I just I ran the cf7 apache connector today, and my apache server has refused to start. Ran...
Mikky
iconmicheal
Offline Send Email
Sep 4, 2007
5:25 pm
41542
... Hash: SHA1 You will need the new wsconfig.jar file that is for Apache 2.2 and manually configure your website connector. If you do not have this file or...
Graham Pearson
gspearson69
Offline Send Email
Sep 4, 2007
5:39 pm
41543
I seem to recall something about a patch for the connector to work with Apache 2. I am in need of that patch myself but can't look for it now. If you find...
John Bartlett
wyntermoonwolf
Offline Send Email
Sep 4, 2007
6:05 pm
41544
I need to return a list of subdirectories. This can be done with cfdirectory for example, in a roundabout way, but I cannot use this tag on the hosting...
Ball, Steve
steve.ball99
Offline Send Email
Sep 4, 2007
6:28 pm
41545
... If you cannot use CFDIRECTORY, I doubt you can install a CFX custom tag, but just in case, you can have a look at CFX_listDir: ...
Claude Schneegans
schneeca
Offline Send Email
Sep 4, 2007
7:23 pm
41546
Here's what they say about that: Can I use the Custom Tags directory on a virtual hosting plan? No. For security and performance reasons, we do not offer use...
Ball, Steve
steve.ball99
Offline Send Email
Sep 4, 2007
7:46 pm
41547
... the calling script. Ok, this stands for CFML tags, those you write in CFML code and generally call <CF_myTag... But you certainly cannot install <CFX tags,...
Claude Schneegans
schneeca
Offline Send Email
Sep 4, 2007
9:00 pm
41548
Makes sense. I thought this would be so easy... (getting a list of subdirectories)! thanks, Steve ... From: coldfusion-howto@yahoogroups.com ...
Ball, Steve
steve.ball99
Offline Send Email
Sep 4, 2007
9:04 pm
41549
Try this to see if you can use FileSystemObjects <CFTRY> <CFOBJECT TYPE="COM" CLASS="Scripting.FileSystemObject" NAME="FSO" ACTION="CONNECT"> <CFCATCH...
Ernest Breau
cf_ernie
Online Now Send Email
Sep 4, 2007
11:28 pm
41550
If that works you can use this <CFTRY> <CFOBJECT TYPE="COM" CLASS="Scripting.FileSystemObject " NAME="FSO" ACTION="CONNECT"> <CFCATCH type="ANY"> <CFOBJECT...
Ernest Breau
cf_ernie
Online Now Send Email
Sep 4, 2007
11:45 pm
41551
Yes. :) ... From: coldfusion-howto@yahoogroups.com [mailto:coldfusion-howto@yahoogroups.com] On Behalf Of Ernest Breau Sent: Tuesday, September 04, 2007 4:16...
Ball, Steve
steve.ball99
Offline Send Email
Sep 4, 2007
11:48 pm
41552
Try this it will allow you to drill down i Threw it together quick <CFTRY> <CFOBJECT TYPE="COM" CLASS="Scripting.FileSystemObject " NAME="FSO" ...
Ernest Breau
cf_ernie
Online Now Send Email
Sep 4, 2007
11:57 pm
41553
Hey Ernest, that works great! One problem though. The directory I wish to interrogate is on a path which includes spaces, and that seems to be killing it. ...
Ball, Steve
steve.ball99
Offline Send Email
Sep 5, 2007
12:10 am
41554
<CFTRY> <CFOBJECT TYPE="COM" CLASS="Scripting.FileSystemObject " NAME="FSO" ACTION="CONNECT"> <CFCATCH type="ANY"> <CFOBJECT TYPE="COM"...
Ernest Breau
cf_ernie
Online Now Send Email
Sep 5, 2007
12:16 am
41555
try the first 6 characters then a ~1 example c:\progra~1 Or are you trying to access a special folder like my documents etc... ... -- ...
Ernest Breau
cf_ernie
Online Now Send Email
Sep 5, 2007
12:23 am
41556
Try drilling down into the path set your folder to c:\ and see if that gives you the same error ... -- ____________________________________________________ ...
Ernest Breau
cf_ernie
Online Now Send Email
Sep 5, 2007
12:31 am
41557
Hi all I am trying to join two tables (first time I have ever needed to) and from what I have read this is what it is supposed to be coded as, but alas… it...
Scott
urbandragon1964
Offline Send Email
Sep 5, 2007
3:39 am
41558
Try this select table1.word, table1.meaning from table1, table2 where table1.word=table2.word and table1.meaning=table2.meaning The way this is written, it...
John Bartlett
wyntermoonwolf
Offline Send Email
Sep 5, 2007
3:50 am
41559
Hi Mikky, what settings were written to your httpd.conf file? Sounds like there was an issue when the JRun configuration was written there. Is this the...
John Barrett
barrjohnm
Offline Send Email
Sep 5, 2007
6:49 am
41560
... Hash: SHA1 The mod_jrun.so file is for apache 2.0. For Apache 2.2 the file will be mod_jrun22.so. I have uploaded the Zip file which can be acquired from...
Graham Pearson
gspearson69
Offline Send Email
Sep 5, 2007
12:24 pm
41561
thanks john!! much appreciated I am wondering also… Is it just silly to add another set of where and and clauses enclosed in a cfif to be able to create a...
Scott
urbandragon1964
Offline Send Email
Sep 6, 2007
3:48 am
41562
You can add CFIF statements while looping over the query results. You can also use CFIF statements inside a CFQUERY block to create dynamic SQL. You may want...
John Bartlett
wyntermoonwolf
Offline Send Email
Sep 6, 2007
5:23 am
41563
I find myself often looping over and conditions the best way to do this is start off with where 1=1 then loop all your ands and CompanyName='Adobe' and...
Ernest Breau
cf_ernie
Online Now Send Email
Sep 6, 2007
12:24 pm
41564
Thanks for the widget. It's a bit ugly, but I can pass in the appropriate folder level, then use http get to process the return (lots of string replacement,...
Ball, Steve
steve.ball99
Offline Send Email
Sep 6, 2007
3:21 pm
41565
I have users copy text from Word document into a HTML text area. The text in the text area will be emailed using cfmail tag. The text that is emailed does not...
FAIZ ZAHIR
fzahir2001
Offline Send Email
Sep 6, 2007
4:28 pm
Messages 41536 - 41565 of 42948   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help