RE: Pinging an email address

2001-05-09 Thread Bruce Heerssen
I know how most folks around here feel about HTML email (evil), but it should be noted that images can be used to track emails. You can either look in your server logs for hits to the image, or serve up the image using CF or PHP, which would let you do things like add records to the database,

RE: MOD2 variation

2001-05-01 Thread Bruce Heerssen
In the past I have used this statement to vary the color of a table row to simulate the 'green bar effect'. tr bgcolor=#iif(qName.CurrentRow MOD 2, DE('ff'), DE('e8e8e8'))# Is there a way to modify this so that in the output of a query a br would be output every second row and a

RE: I'm sure this worked earlier

2001-05-01 Thread Bruce Heerssen
It would also help if you can post the error message. -Bruce -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 01, 2001 10:18 AM To: CF-Talk Subject: RE: I'm sure this worked earlier can you provide the datatypes of the fields?

RE: Studio - File types

2001-05-01 Thread Bruce Heerssen
You can do it with a simple registry hack. 1) In regedit, open the key HKCU/Software/Allaire/Studio45/SavedSettings/ExtendedFindFolder. 2) Add a new string value Item10. Set the value to your new extension. if more than one, use commas to separate (ie: *.abc,*.def). I tried it on mine (CFS

RE: Studio - File types

2001-05-01 Thread Bruce Heerssen
In further testing, I found that although the registry hack works, it's not necessary. Studio does it for you. When you type in a new file type, and a successful search is performed, Studio will update the registry with the new file type. This means that you will be able to select it from the

RE: New CF5 Partner Hosting License

2001-04-27 Thread Bruce Heerssen
From: Akbar Pasha [mailto:[EMAIL PROTECTED]] Sent: Friday, April 27, 2001 2:15 PM To: CF-Talk Subject: RE: New CF5 Partner Hosting License is there any book called PHP by April30th?? ;) Ha! just wondering...does PHP run on windows?? coz if it comes to that i dont want to go for ASP.

RE: Slightly OT: can't access Localhost (127.0.0.1)

2001-04-27 Thread Bruce Heerssen
look in your hosts file, or lmhosts. there should be an entry there for localhost: 127.0.0.1 localhost hth - Bruce From: Mark [mailto:[EMAIL PROTECTED]] snip When trying to access the CF Administrator on our server, I receive an error that the server 127.0.0.1 can't be found, DNS

RE: Cfm-Resources??

2001-04-25 Thread Bruce Heerssen
You can try http://helpdesk.cfm-resources.com/ or Pablo's personal page at http://www.cfpablo.com/ - click on contact (duh!) for email addy's and/or phone info. Failing that, contact me directly and I'll see if he'll answer an icq message. - Bruce -Original Message- From: ibtoad

RE: Looking for a Good Search Solution

2001-04-25 Thread Bruce Heerssen
-Original Message- From: Michael Ross [mailto:[EMAIL PROTECTED]] Subject: RE: Looking for a Good Search Solution I guess at this point the white flag goes up...I am not really sure what to do... It's not that bad, really ;0 snip this is just to start but pretty standard stuff.

RE: CF/JRun Studio

2000-12-12 Thread Bruce Heerssen
-Original Message- From: JustinMacCarthy [mailto:[EMAIL PROTECTED]] I remember someone talking about a RunMultiple copy (something like that ) setting in the REG , but I have no idea what it does J That just might actually work, I wish I could try it but I don't have Jrun Studio.

RE: RegEx to strip HTML

2000-12-12 Thread Bruce Heerssen
Tom, While we're on the subject of regex, do you know how to strip hidden characters from a string (chr(10) and the like)? Also, regex is not one of my strong suits, have you got any good links on the subject? Thanks -- Bruce -Original Message- From: Tom Espen Pedersen

RE: cffile action=upload accetps all file types

2000-12-12 Thread Bruce Heerssen
That is a limitation of the browser. Use server side processing to see if the file is actually what you want. -Original Message- From: Douglas Jordon [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 12, 2000 2:56 PM To: CF-Talk Subject: cffile action="upload" accetps all file

RE: SERVER TIMES OUT ON LONG SCRIPT

2000-12-12 Thread Bruce Heerssen
I don't suppose the file is in comma or tab delimited format? Your message implies that. If it is, you can use it as a coldfusion datasource. That should significantly speed up the process. You can also use sql statements and CF together to step through the records if necessary. hth - Bruce

RE: Access ODBC error

2000-12-12 Thread Bruce Heerssen
http://www.cfm-resources.com/ -Original Message- From: Nick Betts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 12, 2000 10:39 AM To: CF-Talk Subject: RE: Access ODBC error Whats the url fo CFresources free hosting? ~~

RE: CF Salary info

2000-12-11 Thread Bruce Heerssen
A couple of quick thoughts. -Original Message- From: C Kong [mailto:[EMAIL PROTECTED]] excuse the tacky question, Certainly :) but i was wondering what a CF beginner , intermediate level, and senior level CF programmer can make in terms of salary out there. That's a pretty

RE: Application.variables vs local.variables

2000-12-11 Thread Bruce Heerssen
Simon, it's true that using local scopes makes the server set the variable for each page request, thereby consuming resources. However, doesn't locking all references to the application scope also consume resources? And the application scope is stored in server memory, which also consumes

RE: List w/ delims

2000-12-08 Thread Bruce Heerssen
Sure here you go. cfset theList = '"Full Name" "Email Address" "Group List" "Login Name"' cfset theList = replace(theList, '" "', ",", "All") cfset theList = replace(theList, '"', "", "All") cfoutput#theList#/cfoutput Short and sweet. 1. Create the list. Use single quotes to denote the string

RE: ot javascript

2000-12-06 Thread Bruce Heerssen
-Original Message- From: Billy Cravens [mailto:[EMAIL PROTECTED]] snip However, Visual Interdev gives you dropdown menus of JavaScript properties and methods for JavaScript as you're entering code, similar to Studio's tag helpers. -- Billy Cravens And for that matter, Allaire

RE: Customizing Email with CFMail

2000-12-06 Thread Bruce Heerssen
You could put your cfmail tag inside a query loop and have the loop do the processing before you populate the email. For instance: cfloop query="yourQuery" cfset body = replace(body, "##name##", name, "all") cfmail to="#recipient#" from="#sender#" etc... #body# /cfmail /cfloop Obviously you

RE: Summary: A CF limitation in building a spider?

2000-12-05 Thread Bruce Heerssen
Does anyone know if a template will timeout if called from the command line (eg as a sceduled task). I'm thinking that it will only timeout when called from the browser, and then only because the browser stops waiting. Can someone confirm or deny this? Thanks -- Bruce -Original

RE: SQL 7.0 Question

2000-11-30 Thread Bruce Heerssen
No, just remove the asterisk (*) and it should work fine. In delete queries, it is assumed that you want to delete all records that match the criteria in the WHERE clause, unless you explicitly specify which fields to delete. -- Bruce -Original Message- From: ibtoad [mailto:[EMAIL

Re: How to prevent BACK and FORWARD button from clicked?

2000-11-29 Thread Bruce Heerssen
Three points... 1. Use some server side processing to see if the form has been submitted before and reject the new data if it has. You should do the same before serving the form also. Reason: The page source has been sent to the browser and hence can be recovered by the user - NO MATTER HOW YOU

RE: Form Error #2

2000-11-29 Thread Bruce Heerssen
This error usually occurs when a variable resolves empty. e.g. "AND DATAMAP.MEMBER_TYPE =3D #session.membertype#" where session.membertype is empty "". Check for the length of all your variables before you pass it to the query. I hope that was clear enough. -- Bruce -Original

RE: Query Question

2000-11-29 Thread Bruce Heerssen
looks good to me too, but you might want to use an alias for the max field. SELECT max(ACTLOGID) as maxLogIn, JobNum -- Bruce -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 29, 2000 2:50 PM To: CF-Talk Subject: Query Question I

RE: Happy Turkey ... turkeys

2000-11-27 Thread Bruce Heerssen
-Original Message- From: BORKMAN Lee [mailto:[EMAIL PROTECTED]] snip but the real Aussie secret is the Special Sauce and the pickle. I bet you don't have THEM in the US. We do too have Special Sauce here in the US. We call it Thousand Island Dressing. ;)

RE: Display Files in a Dir

2000-11-21 Thread Bruce Heerssen
cfdirectory... If you are hosted remotely, check with your ISP about the availability of this tag because many ISPs disable the use of it (for obvious reasons). -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 21, 2000 3:26 PM To: CF-Talk

RE: CFSELECT, required, and JavaScript validation

2000-11-21 Thread Bruce Heerssen
That has always been a problem with using cfform. You will probably get better results by using html form tags (no cfinput, cfform, etc..) and writing your own validation. hth -- Bruce -Original Message- From: Peter Theobald [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 21, 2000

RE: Stucture help (from GetFunctionList)

2000-11-20 Thread Bruce Heerssen
cfloop collection="#getFunctionList()#" item="keyName" cfoutput#keyName#br/cfoutput /cfloop - Bruce "Eric Fickes" [EMAIL PROTECTED] wrote in message news: The GetFunctionList() post got me thinking. The output from that function is a structure, right? Well, here's my structure

amusing studio error msg

2000-11-20 Thread Bruce Heerssen
, but since I don't have any good imaging software on this box the file weighs in at 640k. For that reason I decided not to attach it to this post. Feel free to contact me directly if you'd like to see it. Seems kind of funny that an error message would tell me that everything is fine. Bruce Heerssen