RE: CFX not allowed

2002-10-10 Thread Mosh Teitelbaum
You can use a command-line zip utility with CFEXECUTE. But, I would imagine that if the host doesn't want you to use CFXs they also won't want you to use CFEXECUTE. But it's something you can look into. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL

RE: Version info in spooled mail

2002-10-10 Thread Mosh Teitelbaum
(in this case, I guess) didn't change from version 4.5 to 5. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 10, 2002 9

RE: QUestion about Input File and CFFILE

2002-10-09 Thread Mosh Teitelbaum
Brian: Is there a particular reason why you have to change the filename before you use CFFILE for upload? Because you can always follow your CFFILE ACTION=Upload with a CFFILE ACTION=Rename if necessary. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL

RE: Ways of Submission

2002-10-09 Thread Mosh Teitelbaum
Mark: The code would look something like: onClick=document.FormName.submit(); Just change FormName to whatever you've named your form. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message

RE: The Myth of Bugs (Was Huge Ungainly thread of Doom)

2002-10-09 Thread Mosh Teitelbaum
to MM and all the MM guys here on the list. And with that... back to (prolly) not responding to this thread. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com

RE: Adding a target to a CFLOCATION URL?

2002-10-09 Thread Mosh Teitelbaum
The TARGET attribute needs to be used on the client side (in an A HREF or the FORM, etc.). It won't work from the server side. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Russ

RE: The Myth of Bugs (Was Huge Ungainly thread of Doom)

2002-10-09 Thread Mosh Teitelbaum
temper, on personal matters that are simply off topic... I *expect* him to be passionate about his ideas and fervent about his expression of them. Without that.. Why not just setup an automated push-button responder and fire all the humans? Just my .02... Auto-response 1936782047 -- Mosh

RE: Push and CFFILE Question - one more question!

2002-10-09 Thread Mosh Teitelbaum
Stick the following code above the CFCONTENT tag: CFHEADER NAME=content-disposition VALUE=attachment; filename=someFILE.fnm -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com

RE: cfinclude inside a cffile tag?

2002-10-09 Thread Mosh Teitelbaum
Use CFSAVECONTENT as in: CFSAVECONTENT VARIABLE=sqlOutput CFINCLUDE TEMPLATE=CFOutputApp.cfm /CFSAVECONTENT CFFILE ACTION=write FILE=d:/whatever/myfile OUTPUT=#sqlOutput# -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191

RE: Push and CFFILE Question - one more question!

2002-10-09 Thread Mosh Teitelbaum
I sent a response to that one too 8^). Check the list. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 10, 2002 1:06 AM

RE: Time Required for Updating DB

2002-10-08 Thread Mosh Teitelbaum
inadvertently making this harder than need be. Does the situation allow for you to update the column via a single UPDATE query as in: UPDATE fooTable SET barColumn = barColumn + 1 If so, this will be infinitely quicker than having to perform 1 UPDATE query per record. -- Mosh Teitelbaum

RE: Time Required for Updating DB

2002-10-08 Thread Mosh Teitelbaum
UPDATE Product SET price= #newprice# WHERE dealerpartno = #dealerpartno# /CFLOOP /CFTRANSACTION -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http

RE: Time Required for Updating DB

2002-10-08 Thread Mosh Teitelbaum
be fine. It's still probably going to take several minutes to perform (you *ARE* running 20,001 queries). Good luck. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Srimanta [mailto:[EMAIL

RE: CFX_EXCEL ERROR

2002-10-07 Thread Mosh Teitelbaum
Do you have Excel installed on the server? -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: JAIME HOI [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 3:11 AM To: CF-Talk

RE: Encapsulating CFFTP within an A HREF is not respected

2002-10-07 Thread Mosh Teitelbaum
to a file on a remote FTP site. In that case, do not use CFFTP. Instead, simply write your A HREF as: A HREF=ftp://ftp.foo.com/bar/baz.txt;Click to download/A -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com

RE: CF Search Debugging ??

2002-10-04 Thread Mosh Teitelbaum
If the code hasn't changed, check the collection. You might try to reindex/repair/recreate the collection. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Ian Vaughan [mailto:[EMAIL

RE: changing the file extension of cfm to html?

2002-10-04 Thread Mosh Teitelbaum
The exact process differs from one web server to the next. But basically, you need to change the association of the .html file extension so that it points to the CF executable. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http

RE: Cumulative Patch for SQL Server (Q316333) Crtical for 2000

2002-10-04 Thread Mosh Teitelbaum
their seatbelt while the fasten seatbelt sign is, the plane quacks at you, seizes up completely, and falls from the sky. 8^) -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com

RE: Application Cf Include

2002-10-03 Thread Mosh Teitelbaum
ExcludeList=/someDir/special.cfm CFIF ListFindNoCase(ExcludeList, CGI.SCRIPT_NAME) NEQ 0 CFINCLUDE TEMPLATE=Header.cfm /CFIF !--- Do other Application.cfm stuff --- -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED

RE: Random Stuff

2002-10-02 Thread Mosh Teitelbaum
How about CreateUUID()? -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 10:42 AM To: CF-Talk Subject: Random

RE: MIME type question

2002-10-02 Thread Mosh Teitelbaum
Just out of curiosity, what does doesn't work mean in your context? What are you trying to do? I'm assuming you're trying to place the mime-type in the ACCEPT attribute. Are you trying to accept CSV but deny MS Excel format? -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651

RE: OT--- Close Main window

2002-10-02 Thread Mosh Teitelbaum
You used to be able to trick IE and Netscape into thinking that you had opened the current window and than use JS to close the window. This would get around the prompt. However, that particular hole has been patched. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email

RE: MIME type question

2002-10-02 Thread Mosh Teitelbaum
generated (ugly) messages and you don't have to worry about different client configurations. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Brian Ferrigno [mailto:[EMAIL PROTECTED]] Sent

RE: Virus Checking

2002-10-01 Thread Mosh Teitelbaum
http://devex.macromedia.com/developer/gallery/info.cfm?ID=DB43FE22-4A73-11D5 -83F600508B94F380method=Full Or just use CFEXECUTE to call your own virus scanner (NAV, Panda, whatever) from the command line. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL

RE: Browser forgetting form values

2002-10-01 Thread Mosh Teitelbaum
of stored pages). Also, check that you're not sending back page expiration headers. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]] Sent: Tuesday

RE: How to get directory from full URL?

2002-10-01 Thread Mosh Teitelbaum
Pardon? Reversed the delimiter? Reverse simply changes the order of the characters. It doesn't hold them up to a mirror and get new characters. Reverse(/) = / Reverse(\) = \ Reverse(/\) = \/ Reverse(\/) = /\ -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL

RE: MS Access Date format

2002-10-01 Thread Mosh Teitelbaum
CreateODBCDate(date) -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Greg Luce [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 1:19 PM To: CF-Talk Subject: MS Access Date

RE: SQL Text question from a beginner

2002-10-01 Thread Mosh Teitelbaum
No worries... I'm j/k with you. I've certainly sent out my fair share of emails while under the influence of heavy doses of caffeine 8^). The ever nice, Mosh 8^) -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com

RE: Forcing Word to open

2002-10-01 Thread Mosh Teitelbaum
). -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Hugo Ahlenius [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 12:55 PM To: CF-Talk Subject: RE: Forcing Word to open Yes, I

RE: How to get directory from full URL?

2002-10-01 Thread Mosh Teitelbaum
Ahh... PATH_TRANSLATED. You're right (not that you need me to tell you this), PATH_TRANSLATED will use backslashes. Wasn't the original question about a URL, tho? Confused in CF-Talk -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http

RE: Virus Checking

2002-10-01 Thread Mosh Teitelbaum
Well, nothing useful. You could always do the virus checking manually and, once verified as virus free, move the file to where the rest of the world can find it. But without the ability to install an antivirus app, your kind of sol. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301

RE: Detecting Acrobat?

2002-10-01 Thread Mosh Teitelbaum
/BODY /HTML -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 4:07 PM To: CF-Talk Subject: OT: Detecting Acrobat

RE: SQL Text question from a beginner

2002-10-01 Thread Mosh Teitelbaum
Actually, I'm a Coke and Mountain Dew coder. Hot caffeine just doesn't do it for me. But than, this is off topic, isn't it? 8^) -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Tony

RE: CFM Files are Locked?

2002-10-01 Thread Mosh Teitelbaum
*ARE* the same user, so you can delete them. But if you are a different user, even one with Admin privileges, the system maintains the lock. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com

RE: CFQUERY and STARTROW=0 (??!)

2002-10-01 Thread Mosh Teitelbaum
He's wrong. And computers don't start at 0. It's up to the compiler/interpreter to decide what the first index is. In Cold Fusion, the first index is always 1. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com

RE: Help attaching a dynamic pdf to an email

2002-09-30 Thread Mosh Teitelbaum
is that the recipient opens the FDF, Acrobat sees that /F bit and downloads the indicated PDF, filling in the fields as indicated in the FDF. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From

RE: Adding two fields and displaying in a third

2002-09-30 Thread Mosh Teitelbaum
#.value)+... ^^ BTW, why are you using eval()? -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Thane Sherrington [mailto:[EMAIL

RE: Adding two fields and displaying in a third

2002-09-30 Thread Mosh Teitelbaum
At 11:22 AM 9/30/02 -0400, Mosh Teitelbaum wrote: onchange=window.document.ExpenseForm.TotalAmount#Line#.value=eval (window.document.ExpenseForm.Mileage#Line#)+eval(window.document. ExpenseForm.CostOfMeals#Line#); Add .value to the end of the 2 fields you're trying to add

RE: SQL Text question from a beginner

2002-09-30 Thread Mosh Teitelbaum
A whopping 16 characters? 8^) Actually, according to my SQL Server reference, the TEXT datatype can store 2,147,483,647 bytes. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Tony Weeg

RE: Time calculation

2002-09-27 Thread Mosh Teitelbaum
Jeez... must I say it again? CRAP 8^) Thanks for the correction. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Everett, Al [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27

RE: CFMAIL problems

2002-09-26 Thread Mosh Teitelbaum
messages until a couple of days after they were sent. I don't remember where I read about it, but maybe that's what's going on here. (Jeez... I feel like I'm spreading an Urban Legend or something). -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW

RE: CFCONTENT and file downloads

2002-09-26 Thread Mosh Teitelbaum
FILE=something.pdf DELETEFILE=No Make sure that the VALUE attribute of the CFHEADER tag begins with attachment instead of inline. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message

RE: dot test

2002-09-26 Thread Mosh Teitelbaum
Using Outlook 2000, I'm seeing 1 less dot than there should be in each of the 3 samples provided. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED

RE: Time calculation

2002-09-26 Thread Mosh Teitelbaum
!--- Get number of seconds --- CFSET dspSeconds = diffSeconds !--- Display in day:hour:minute:second format --- CFOUTPUT #dspDays#:#dspHours#:#dspMinutes#:#dspSeconds# /CFOUTPUT -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http

RE: Time calculation

2002-09-26 Thread Mosh Teitelbaum
Got one of these for SQL Server? j/k 8^) -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 5:36 PM

RE: Sorting By Column

2002-09-26 Thread Mosh Teitelbaum
# /CFIF /CFQUERY TABLE TR TDA HREF=currentPage.cfm?Filter=#FORM.Filter#Sort=col1Col1/A/TD TDA HREF=currentPage.cfm?Filter=#FORM.Filter#Sort=col2Col2/A/TD /TR CFOUTPUT QUERY=GetRecords ... display rows based on query ... /CFOUTPUT /TABLE -- Mosh

RE: Time calculation

2002-09-26 Thread Mosh Teitelbaum
Crap. Change all of the LTEs to GTEs and all of the MODs to / (divided by). That'll teach me not to test code. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Mosh Teitelbaum [mailto

RE: Time calculation

2002-09-26 Thread Mosh Teitelbaum
Mosh Teitelbaum wrote: Got one of these for SQL Server? From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] You mean it doesn't work? You should really get a better database :-) You mean MS Access? I don't think it'll work in that either 8^). ducks -- Mosh Teitelbaum evoch, LLC Tel: (301

RE: Why oh *WHY* is this *now* working?

2002-09-26 Thread Mosh Teitelbaum
sure that the first hit you make against the server is of the form http://localhost/ As the error message said: The ColdFusion engine must be stopped and restarted to reset the permitted IP address. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email

RE: input tag

2002-09-25 Thread Mosh Teitelbaum
definition. It's assumed and, therefore, no necessary. And finally, note the code used in the onClick definition. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: FlashGuy [mailto:[EMAIL

RE: Array Help

2002-09-25 Thread Mosh Teitelbaum
And, in case you're still fuzzy, it's no longer a list because of the call to ListToArray(). -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED

RE: CFFILE/SCHEDULE

2002-09-25 Thread Mosh Teitelbaum
You would use CFCONTENT to send the file back to the browser. Either use another CFFILE after the CFCONTENT to delete the file or run a scheduled event to routinely delete any *.ins files. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http

RE: Display 3 column text

2002-09-25 Thread Mosh Teitelbaum
Try moving the CFSET x = 1 bit in front of the CFLOOP tag. Every iteration of the loop current resets x back to 1. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: FlashGuy [mailto

RE: CFFILE/SCHEDULE

2002-09-25 Thread Mosh Teitelbaum
Uhh... yeah, or that 8^). BTW, Isaac, did you get that link I sent about the free C lib for the Twofish algorithm? -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: S. Isaac Dealey

RE: please do my work for me

2002-09-25 Thread Mosh Teitelbaum
Just to clarify... YOU'RE PARSING THE URL MANUALLY?!?!?!? CF does this for you. You can access the variable as URL.pCode from anywhere in your code, as in: CFOUTPUT The value of the pCode URL variable is #URL.pCode#. /CFOUTPUT -- Mosh Teitelbaum evoch, LLC Tel

RE: CFFILE/SCHEDULE

2002-09-25 Thread Mosh Teitelbaum
You're welcome and no problem. I just wanted to make sure that you got it, cause my service provider keeps mucking up my email. Yay Comcast! -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message

RE: CFMAIL message resent, completed this time.

2002-09-24 Thread Mosh Teitelbaum
\Temp\#FILE.ServerFile# Hello. Here's the file. /CFMAIL HTH. If not, send some code along. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Adams, Stephen [mailto

RE: Forging a web page

2002-09-24 Thread Mosh Teitelbaum
If you're talking about the date that is commonly displayed in the header or footer when you print a web page, it's usually as simple as changing the date/time on your computer. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http

RE: encryption - CF SQL Server

2002-09-23 Thread Mosh Teitelbaum
-83F600508B94F85Amethod=Full You're on your own for finding the non-CF versions though 8^). Good luck. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent

RE: Finding next 2 items in query

2002-09-23 Thread Mosh Teitelbaum
records. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Costas Piliotis [mailto:[EMAIL PROTECTED]] Sent: Friday, September 20, 2002 7:42 PM To: CF-Talk Subject: RE: Finding next 2 items

RE: Finding next 2 items in query

2002-09-23 Thread Mosh Teitelbaum
be optimized. But this should at least get you going. Good luck. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]] Sent: Friday, September 20

RE: encryption - CF SQL Server

2002-09-23 Thread Mosh Teitelbaum
://www.macfergus.com/niels/code/TwofishClib.html -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 7:11 PM To: CF-Talk Subject

RE: Finding next 2 items in query

2002-09-20 Thread Mosh Teitelbaum
to set these 2 values to active. Note that in the 5b, you're getting all approved items, not just those less than the last 2 approved items. This is just in case you only have to items that are currently approved. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL

RE: encryption - CF SQL Server

2002-09-20 Thread Mosh Teitelbaum
Encrypted in the DB but not encrypted in the flat file? Do you ever need to decrypt the encrypted data? I'm not much of a COM guy but Java has internal encryption classes (dunno if that's an option for you). -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL

RE: parsing user input to get count

2002-09-20 Thread Mosh Teitelbaum
, -)) CFSET endNum = Trim(GetToken(currEle, 1, -)) CFSET count = count + (endNum - beginNum) + 1 /CFIF /CFLOOP CFOUTPUTThere were #count# numbers entered./CFOUTPUT -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax

RE: Just curious possible problem

2002-09-19 Thread Mosh Teitelbaum
What code are you using to perform the copy? -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Webmaster [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 19, 2002 10:35 AM To: CF

RE: cfinclude, how granular can you make it?

2002-09-19 Thread Mosh Teitelbaum
So I think you've already discovered that CFINCLUDE is not that granular. It seems as though you just want a way to encapsulate your CFIF expression. UDF (User Defined Functions -- introduced in CF5) may be the way to go here. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933

RE: cftry cftransaction order

2002-09-19 Thread Mosh Teitelbaum
Database Exception CFTRANSACTION ACTION=Rollback / /CFCATCH /CFTRANSACTION /CFTRY -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original

RE: Log reporting error - No actual error

2002-09-18 Thread Mosh Teitelbaum
Well... I think I've gone through all of my ask these first questions. The only other thing I can think of is a code review of the complete code. Dunno. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original

RE: Log reporting error - No actual error

2002-09-18 Thread Mosh Teitelbaum
/CFIF -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Scott Brady [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 17, 2002 3:12 PM To: CF-Talk Subject: RE: Log reporting error

RE: Log reporting error - No actual error

2002-09-17 Thread Mosh Teitelbaum
Do you have any code we could look at? -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Scott Brady [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 17, 2002 12:27 PM To: CF-Talk

RE: Log reporting error - No actual error

2002-09-17 Thread Mosh Teitelbaum
Not to sound like a broken record, but could you post the code for the action page? As Dan suggested, that's most likely where the problem would be. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message

RE: Recursion

2002-09-12 Thread Mosh Teitelbaum
Or, you could rewrite the function without recursion. Just thought I'd mention it as another alternative. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Dave Watts [mailto:[EMAIL

RE: CF dynamic content server load (was: Large Corporations that use ColdFusion)

2002-09-12 Thread Mosh Teitelbaum
on a regular basis, than caching the queries may not be a valid option either. In that case, you may want to rethink your approach. Out of curiosity, why are the page contents being stored in the database? -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW

RE: cfhttp useragent bug?

2002-09-12 Thread Mosh Teitelbaum
Is the user agent value hard coded as in your example or is it dynamic? Because if it's dynamic, than there may be some minor logic flaw in generating its value that causes it to be appended to the previous value instead of overwriting it. Just a thought (and a question, I guess 8^). -- Mosh

RE: Recursion

2002-09-12 Thread Mosh Teitelbaum
with a single query result set containing all of your data, and you offload data processing responsibilities to the server that knows how to best process data. Good luck. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com

RE: is there a trim function to get rid of a space between names

2002-09-11 Thread Mosh Teitelbaum
Err... CFSET Name = Mac Donald CFSET NewName = Replace(Name, , , ALL) This will remove all of the spaces in the string. Is that what you were looking for? -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com

<    1   2   3   4   5   6