RE: webcam software

2006-12-19 Thread Bobby Hartsfield
I had to take mine down because I'd forget that it was there and the wife and I would "walk by" nekkid ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.432 / Virus Database

RE: DateTime format problems

2006-12-19 Thread Bobby Hartsfield
There is a current thread on getting the last modified date and formatting it. There were 2 solutions. You should try one of those. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ioannis Papanikolaou [mailto:[EMAIL PROTECTED] Sent

RE: webcam software

2006-12-19 Thread Bobby Hartsfield
I LOVE TinCam. http://www.tincam.com/ ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 19, 2006 10:33 AM To: CF-Talk Subject: webcam software Can anyone recommend a decent webcam

RE: Counting Cfcontent Downloads

2006-12-19 Thread Bobby Hartsfield
or concel on the download prompt or even download half of the file and then cancel though. I don't think you are going to get around that in any easy way. If you do though, by all means let us know how :-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Me

RE: java.io.File lastModifed() string conver sion

2006-12-18 Thread Bobby Hartsfield
And if I'd try my own code before I sent it, it might work... I set 'lastModDate' then tried to call 'LastModifiedDate'. Just change one or the other. :-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message----- From: Bobby

RE: java.io.File lastModifed() string conver sion

2006-12-18 Thread Bobby Hartsfield
Try this. Then you can dateformat and timeformat lastModDate #dateformat(lastModifiedDate, 'mm\dd\')# #timeformat(lastModifiedDate, 'hh:mm tt')# ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Richard A

RE: cffile action=read does FILE.fileSize still work?

2006-12-18 Thread Bobby Hartsfield
Cffile action read wont give you anything more than the content of the file. A len(myfile) /1024 may give you the kilobytes though :-) #len(myfile) / 1024# kb Or...you can cfdirectory the parent dir of the file and use a filter of the files name. then the var you want is 'size' http://acodersli

RE: Still need help!! (Login & )

2006-12-18 Thread Bobby Hartsfield
dn’t be on a login page. Redirect them to your default. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: Monday, December 18, 2006 9:37 AM To: CF-Talk Subject: Re: Still need help!! (Login & ) Tha

RE: Generating Static HTM Pages with CF7

2006-12-17 Thread Bobby Hartsfield
Even better. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Sunday, December 17, 2006 11:34 PM To: CF-Talk Subject: RE: Generating Static HTM Pages with CF7 > Cfhttp to read the source

RE: Generating Static HTM Pages with CF7

2006-12-17 Thread Bobby Hartsfield
Cfhttp to read the source and cffile with an action of 'write' to save it. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Arden Weiss [mailto:[EMAIL PROTECTED] Sent: Sunday, December 17, 2006 9:56 PM To: CF-Talk Subject:

RE: Login page and cflocation

2006-12-17 Thread Bobby Hartsfield
I suppose you could but it would be a variable that is constantly changing with every page request. I'd personally use the url scope. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: S

RE: Login page and cflocation

2006-12-17 Thread Bobby Hartsfield
. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: Sunday, December 17, 2006 4:12 PM To: CF-Talk Subject: Re: Login page and cflocation Well, I think the problem I am having is that all my pages are

RE: cflocation - requires hitting submit button twice

2006-12-17 Thread Bobby Hartsfield
Update Select the info here... the form ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.

RE: Dynamic Map of U.S.

2006-12-14 Thread Bobby Hartsfield
decide to dive into this one. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Mike Chabot [mailto:[EMAIL PROTECTED] Sent: Thursday, December 14, 2006 8:41 PM To: CF-Talk Subject: Dynamic Map of U.S. I am looking to create a map of the US wh

RE: application.cfc

2006-12-14 Thread Bobby Hartsfield
My guess is that CF doesn’t like you setting functions inside of a cfc? Because it happens no matter how simple of a function I attempt to put in one. That's just a guess though. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Chad

RE: application.cfc

2006-12-14 Thread Bobby Hartsfield
Make that "escape strings FOR javascript" not IN javascript ;-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message----- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Thursday, December 14, 2006 12:11 PM To: CF-Talk Subject: RE: appli

RE: application.cfc

2006-12-14 Thread Bobby Hartsfield
You could just use jsstringformat() to escape strings in javascript ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Thursday, December 14, 2006 11:43 AM To: CF-Talk Subject: application.cfc I am

RE: Coldfusion Developer Job Posting

2006-12-14 Thread Bobby Hartsfield
You'll have better luck posting it to CF-Jobs http://houseoffusion.com/groups/cf-jobs/ ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: McCabe, Bill [mailto:[EMAIL PROTECTED] Sent: Thursday, December 14, 2006 11:15 AM To: CF-Talk Su

RE: Looping over UPS's struct

2006-12-14 Thread Bobby Hartsfield
#trackingResults.packages[a]activity[b].activitylocation.address.city# ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Thursday, December 14, 2006 10:26 AM To: CF-Talk Subject: Looping

RE: What is wrong with this function (A thread of my very own)

2006-12-14 Thread Bobby Hartsfield
First of all, start your own thread :-) especially when your question has nothing what so ever to do with the topic of the one you posted to. ;-) Second, all I can really tell you is to look into SQL updates, inserts and deletes. Google. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http

RE: What is wrong with this function

2006-12-13 Thread Bobby Hartsfield
Try... uname and pword or somethingelse. And to be picky... why select 2 values (username and password) in the query when you already have them? ;-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED]

RE: Previous/Next Button Issue

2006-12-12 Thread Bobby Hartsfield
http://acoderslife.com/tutorials/index.cfm?act=tl&cid=1 "A Better Paged Results Method" ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Steve LaBadie [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 12, 2006 1:45 PM To: C

RE: File upload max size

2006-12-12 Thread Bobby Hartsfield
nice ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 12, 2006 1:17 PM To: CF-Talk Subject: File upload max size Someone was asking recently how you can limit the size of uploaded

RE: Extremely long session names with dashes

2006-12-11 Thread Bobby Hartsfield
> What does it matter?? lol! Oh... even though you ask one dumb question right after another daily... I forget you are on this list sometimes and forget to explain how conversations work... you have to read the REST of the posts to follow it... ;-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfi

RE: Extremely long session names with dashes

2006-12-11 Thread Bobby Hartsfield
What version of CF? ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: Monday, December 11, 2006 12:56 PM To: CF-Talk Subject: Re: Extremely long session names with dashes Actually mine is pretty

RE: Extremely long session names with dashes

2006-12-11 Thread Bobby Hartsfield
So no one has any idea where these come from? (No not the stork Will lol) Ps.. Will I hope you have a good paying project right now. The bar tab is gonna be on you on the 13th. I think ill being about 8 people ;-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com

Monday funny - No need for replies, just sharing

2006-12-11 Thread Bobby Hartsfield
http://howtoprankatelemarketer.ytmnd.com/ ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.432 / Virus Database: 268.15.15/581 - Release Date: 12/9/2006 3:41 PM

RE: Change Access field

2006-12-08 Thread Bobby Hartsfield
1) Alter table TABLENAME add newcolumnname datatype 2) Update tablename set newcolumnname = oldcolumnname 3) Alter table TABLENAME drop column oldcolumnname I left out the table name ;-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From

RE: Interpolation - Round 2

2006-12-08 Thread Bobby Hartsfield
The only difference I see is that PS blurred it slightly. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Friday, December 08, 2006 11:25 AM To: CF-Talk Subject: Interpolation - Round 2 Okay it&#

RE: initializing createObject("component",...) - Path error

2006-12-08 Thread Bobby Hartsfield
You said the error said: petitions.CLIENTS But the code was petitions.CLIENT I'd say you either have an extra S or missing an S. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Walter Conti [mailto:[EMAIL PROTECTED] Sent: F

RE: getSessionList.cfm UDF

2006-12-08 Thread Bobby Hartsfield
I can see why it would error due to server configuration but not why it would show an empty structure. Sorry. Try that. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ryan Stille [mailto:[EMAIL PROTECTED] Sent: Friday

RE: dynamically generating .flv files on upload

2006-12-08 Thread Bobby Hartsfield
h a system task rather than coldfsuion. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Will Swain [mailto:[EMAIL PROTECTED] Sent: Friday, December 08, 2006 4:02 PM To: CF-Talk Subject: SOT: dynamically generating .flv files on upload I want

RE: Change Access field

2006-12-08 Thread Bobby Hartsfield
a reserved word. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: Friday, December 08, 2006 3:11 PM To: CF-Talk Subject: OT: Change Access field Is there a way to change a field name is an Access table via SQ

RE: Retrieve RemoteName

2006-12-08 Thread Bobby Hartsfield
th to a file? Are you doing some sort of file manipulation on it with every request? Or is Y a universal mapped network drive or something? ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Keith McGee [mailto:[EMAIL PROTECTED] Sent: Friday, Dec

RE: Anyone familiar with the CF_TwoSelectsRelated custom tag?

2006-12-08 Thread Bobby Hartsfield
nt it would be better to find another means of doing this. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Doug Bezona [mailto:[EMAIL PROTECTED] Sent: Friday, December 08, 2006 9:10 AM To: CF-Talk Subject: RE: Anyone familiar wit

RE: Weird in Firefox: drop down list with selected item

2006-12-08 Thread Bobby Hartsfield
Apparently no, it's selected="selected" ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Eric Roberts [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 11:14 PM To: CF-Talk Subject: RE: Weird in Firefox: drop

RE: Retrieve RemoteName

2006-12-08 Thread Bobby Hartsfield
those files don’t exist. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Keith McGee [mailto:[EMAIL PROTECTED] Sent: Friday, December 08, 2006 6:27 AM To: CF-Talk Subject: Re: Retrieve RemoteName Yes, I have a login, I thought of that after the

RE: Anyone familiar with the CF_TwoSelectsRelated custom tag?

2006-12-08 Thread Bobby Hartsfield
I guess you both stopped reading just before this... > This all, of course, depends on how MUCH data we are talking > about though. You don't want to overload a JS array on a > windows 95 machine running IE 4.5 and 64 megs of ram ;-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby H

RE: Anyone familiar with the CF_TwoSelectsRelated custom tag?

2006-12-07 Thread Bobby Hartsfield
tion would already be done if you used one of the predefined libraries or something like cf_ajax (or whatever it's called now. mx_ajax maybe?) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Thursd

RE: Interpolation

2006-12-07 Thread Bobby Hartsfield
gotcha ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 3:52 PM To: CF-Talk Subject: Re: Interpolation Bobby Hartsfield wrote: > > You can also use windows mag

RE: Using Iif and De together...

2006-12-07 Thread Bobby Hartsfield
Couldn’t you just use: If it already exists, its value will be in form.listing_openhouse If it DOES not exist, it will be created and the value "N" will be stored in it. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: And

RE: SQL getting the next available ID

2006-12-07 Thread Bobby Hartsfield
#jUDate.getTime()# ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 3:25 PM To: CF-Talk Subject: RE: SQL getting the next available ID What he said... I also

RE: SQL getting the next available ID

2006-12-07 Thread Bobby Hartsfield
including the milliseconds but I cant remember it. Feel free to post it if you find it :-) just another option to kick around. Cheers. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Thu

RE: Retrieve RemoteName

2006-12-07 Thread Bobby Hartsfield
most generic firewalls with web administration capabilities. But yeah, I don’t think its really worth it. Are people not logging into this application? That would be an easy way to say who saw what errors and when. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Ori

RE: Extremely long session names with dashes

2006-12-07 Thread Bobby Hartsfield
Was that yet another useless bunch of thrown together words from Will Tomlinson? Yes, yes I believe it was. And to think, I actually thought there might be some sort of intelligent response inside when I saw your name... SIKE!! **flips will off** ;-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby

RE: Extremely long session names with dashes

2006-12-07 Thread Bobby Hartsfield
Yes, I think that’s what I said though. I'm just curious as to where the names come from like that and why. :-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: David [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 1:28

RE: Anyone familiar with the CF_TwoSelectsRelated custom tag?

2006-12-07 Thread Bobby Hartsfield
read. There are just some attributes that it doesn’t work very well with. I haven’t found a definitive list of them anywhere, you'll just have to try it and see. Personally, id write my own from scratch. You should be able to find enough code on Google to piece something together. ..:.:.:.:.:.:

RE: Interpolation

2006-12-07 Thread Bobby Hartsfield
height and width. ;-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 1:38 PM To: CF-Talk Subject: Interpolation Can anyone tell me if any of these three thumbnails are

RE: Determine database field type

2006-12-07 Thread Bobby Hartsfield
I'm not big on oracle so I don’t know if you have something similar to the schema info tables in MSSQL but I believe that DESCRIBE will work in Oracle... according to google anyway :-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: d

RE: Extremely long session names with dashes

2006-12-07 Thread Bobby Hartsfield
I am on CF6 and he is on CF7. Maybe it’s a new option? I don’t see any difference between the 2. Still just the same old "Use UUID for cftoken" ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message----- From: Bobby Hartsfield [mailto:[EMAIL PROTEC

RE: Determine database field type

2006-12-07 Thread Bobby Hartsfield
No one ever says what database they are using :-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 10:09 AM To: CF-Talk Subject: Determine database field type I have

RE: Weird in Firefox: drop down list with selected item

2006-12-07 Thread Bobby Hartsfield
You are probably right, and I've never even thought about that but I don’t recall it ever popping up during validation. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: DURETTE, STEVEN J (ASI-AIT) [mailto:[EMAIL PROTECTED] Sent: Thu

RE: SQL getting the next available ID

2006-12-07 Thread Bobby Hartsfield
ou wanted to do. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 9:49 AM To: CF-Talk Subject: Re: SQL getting the next available ID Bobby, So basically what I would do is add a column to my advertisem

Extremely long session names with dashes

2006-12-07 Thread Bobby Hartsfield
se a UUID for the cftoken in the administrator but that still doesn’t make the session name that long. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.432 / Virus Da

RE: SQL getting the next available ID

2006-12-07 Thread Bobby Hartsfield
ou can set the flag to 1. All 1's are verified ads that are ready to roll. All 0's are pending verification. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006

RE: Weird in Firefox: drop down list with selected item

2006-12-07 Thread Bobby Hartsfield
Those all work. I normally just use the first one. ;-) Try control + shift + R to make sure FF just isn't remembering the last selection. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Philippe Varichon [mailto:[EMAIL PROT

RE: Retrieve RemoteName

2006-12-07 Thread Bobby Hartsfield
that could take quite some time to process. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 7:40 AM To: CF-Talk Subject: RE: Retrieve RemoteName > I have built

RE: login problem

2006-12-06 Thread Bobby Hartsfield
= true and any other session info I need to use. Is that what you are doing basically? ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 06, 2006 9:42 PM To: CF-Talk Subject: RE

RE: Checking for value of checbox in an

2006-12-06 Thread Bobby Hartsfield
th dynamic names. It was checked ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message----- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 06, 2006 10:49 AM To: CF-Talk Subject: RE: Checking for value of checbox in

RE: Checking for value of checbox in an

2006-12-06 Thread Bobby Hartsfield
It was checked It was not checked ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 06, 2006 10:12 AM To: CF-Talk Subject: Checking for value of checbox in an block

RE: path outside webroot

2006-12-05 Thread Bobby Hartsfield
Makes sense (I guess lol) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 05, 2006 6:17 PM To: CF-Talk Subject: RE: path outside webroot > I saw the same thing in the docs D

RE: getSessionList.cfm UDF

2006-12-05 Thread Bobby Hartsfield
Ok, but appname is a required parameter. :-) * @param appname Application name. (Optional) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 05, 2006 5:21 PM To: CF

RE: getSessionList.cfm UDF

2006-12-05 Thread Bobby Hartsfield
e is a required parameter but it is listed as optional in what you have now. This should straighten everything out. /** * Gets all the session keys and session ids for a given application. * * @param appname Application name. (Required) * @return Returns a structure. * @author Bobby Har

RE: Query of Query Timeout

2006-12-05 Thread Bobby Hartsfield
hing goes right back to normal before I can catch it. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Dave Phillips [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 05, 2006 10:57 AM To: CF-Talk Subject: Query of Query Timeout Has anyone eve

RE: path outside webroot

2006-12-05 Thread Bobby Hartsfield
The wwwroot of the cf install directory is returned either way. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 05, 2006 11:21 AM To: CF-Talk Subject: RE: path outside webroot I&#

RE: path outside webroot

2006-12-05 Thread Bobby Hartsfield
ust off the root called '\include\', then the config file would need to change so the 'root path' is set correctly. But if ExpandPath('/') did what most people would expect it to do, that directory structure would never matter again. Oh well I suppose :-) ..:.:.:.:

RE: Any way to limit file upload size?

2006-12-05 Thread Bobby Hartsfield
Without some outside help like activeX controls, there's really no way to know the file size before it is uploaded in all browsers. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Gaulin, Mark [mailto:[EMAIL PROTECTED] Sent: Tu

RE: path outside webroot

2006-12-04 Thread Bobby Hartsfield
I indeed can, but I don’t get why expandpath('/') returns something completely different than expandpath('.') especially if, like you said, CF doesn't know anything about my IIS setup... I guess "IIS Setup" was a bad term to use. The site's root directory

RE: getSessionList.cfm UDF

2006-12-04 Thread Bobby Hartsfield
When you said password, I automatically assumed that you meant a user's password. I set all my DB passwords in the CF Admin. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Monday, December 04, 2006

RE: getSessionList.cfm UDF

2006-12-04 Thread Bobby Hartsfield
ed it only. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Monday, December 04, 2006 6:30 PM To: CF-Talk Subject: RE: getSessionList.cfm UDF Well that said, it has always been given as good practice to

RE: path outside webroot

2006-12-04 Thread Bobby Hartsfield
arently... the directory it is being called from so why does expandpath('/') and expandpath('\') return the install directory's wwwroot folder? I've only tested that here on my local dev box and not on the demo or production servers. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Ha

RE: getSessionList.cfm UDF

2006-12-04 Thread Bobby Hartsfield
Ha! I don’t have ANY code like THAT... *hides* Just curious but did you mean to do this? @author Bobby Hartsfield ([EMAIL PROTECTED]@acoderslife.com) :-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Raymond Camden [mailto:[EMAIL

RE: Hiding email addresses

2006-12-04 Thread Bobby Hartsfield
should be set after that. Let me know how it goes. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: Monday, December 04, 2006 3:35 PM To: CF-Talk Subject: RE: Hiding email addresses Sorry Bob

RE: getSessionList.cfm UDF

2006-12-04 Thread Bobby Hartsfield
Maybe it would be better to say that you as a developer should know better than to put things that you shouldn't into a scope so easily accessible by others. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -- No virus found in this outgoing message. Checked by AVG

RE: getSessionList.cfm UDF

2006-12-04 Thread Bobby Hartsfield
ions() { var tracker = createObject("java","coldfusion.runtime.SessionTracker"); return tracker.getSessionCollection(application.applicationName); } cheers ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Raymond Camden [mailto:[EMA

RE: Phone Number Mask

2006-12-04 Thread Bobby Hartsfield
see if it is 10 digits only (no more no less) - if so format it - else display a message #'(' & left(phone, 3) & ') ' & mid(phone, 4, 3) & '-' & right(phone, 4)# Only 10 digit numbers are allowed. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield h

RE: getSessionList.cfm UDF

2006-12-04 Thread Bobby Hartsfield
Not at all. :-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Monday, December 04, 2006 11:38 AM To: CF-Talk Subject: Re: getSessionList.cfm UDF Bobby, you mind if I "borrow" th

RE: Handling Attachments

2006-12-04 Thread Bobby Hartsfield
ementing field, just take vcid out of the field list (first set of parenthesis) else give it a value in the second set of parns. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Peter Tanswell [mailto:[EMAIL PROTECTED] Sent: Monday, December 04

RE: getSessionList.cfm UDF

2006-12-04 Thread Bobby Hartsfield
Try it in more than one brwoser at once to see. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Richard Cooper [mailto:[EMAIL PROTECTED] Sent: Monday, December 04, 2006 6:23 AM To: CF-Talk Subject: getSessionList.cfm UDF Hi,

RE: Another DDOS attack on CT??

2006-12-04 Thread Bobby Hartsfield
Could be affected down the line somewhere by EveryDNS. http://securitywatch.eweek.com/exploits_and_attacks/everydns_opendns_under_b otnet_ddos_attack.html ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Will Tomlinson [mailto:[EMAIL

RE: Table Cell Height Question

2006-12-01 Thread Bobby Hartsfield
Lol... make that and I'm sober... heh ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Friday, December 01, 2006 4:21 PM To: CF-Talk Subject: RE: Table Cell Height Question Us

RE: Table Cell Height Question

2006-12-01 Thread Bobby Hartsfield
Use the background color ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Steve LaBadie [mailto:[EMAIL PROTECTED] Sent: Friday, December 01, 2006 1:09 PM To: CF-Talk Subject: RE: Table Cell Height Question Bobby, If I do that every row

RE: Hiding email addresses

2006-12-01 Thread Bobby Hartsfield
spam from going through my clients contact form before it happens rather than have them bombarded with spam one day just to ask me to do it anyway. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Dennis Powers [mailto:[EMAIL PROTECTED] Sent: F

RE: Hiding email addresses

2006-12-01 Thread Bobby Hartsfield
roblems with it. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: Friday, December 01, 2006 2:50 PM To: CF-Talk Subject: RE: Hiding email addresses Hi Dennis, I'm trying this bhcaptcha tag but am havin

RE: Table Cell Height Question

2006-12-01 Thread Bobby Hartsfield
As much as it pains me to recommend doing ANYTHING with a font tag, try putting style="background-color: #00;" on the font tag. ;-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Steve LaBadie [mailto:[EMAIL PROTECTED] Se

RE: division by 0 error

2006-12-01 Thread Bobby Hartsfield
Sorry. I'm lost in stack traces. Wish I could help more. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: Friday, December 01, 2006 11:44 AM To: CF-Talk Subject: RE: division by 0 error Nope.

RE: Table Cell Height Question

2006-12-01 Thread Bobby Hartsfield
r, not the cell. (if that's what you meant) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.430 / Virus Database: 268.15.3/562 - Release Dat

RE: division by 0 error

2006-12-01 Thread Bobby Hartsfield
Is there an include in Application.cfm that has a bit of code on ITS line 7 that might cause it? ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: Friday, December 01, 2006 10:52 AM To: CF-Talk Subject

RE: Sean Corfield, it's time to approve my post

2006-11-30 Thread Bobby Hartsfield
about nothing. :-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 3:42 PM To: CF-Talk Subject: Re: Sean Corfield, it's time to approve my post Muc

RE: DateDiff weirdness

2006-11-29 Thread Bobby Hartsfield
Yep. I was going for the difference between two numbers... not seconds between two actual dates sorry. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 29, 2006 7:02 PM To

RE: Jingle Bells

2006-11-29 Thread Bobby Hartsfield
I don’t see that happening without some monitoring. He does enough already. Just drop the thread or move it for him :-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 29

RE: DateDiff weirdness

2006-11-29 Thread Bobby Hartsfield
Try making them BOTH createDateTime() values THEN using datediff() on those values. If that doesn’t work, try this... ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Sent: Wednesday, November

RE: virus software

2006-11-29 Thread Bobby Hartsfield
I suppose it would be ok but I wouldn't' use the server for any activities that would cause you to NEED anti-spyware :-) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Richard Cooper [mailto:[EMAIL PROTECTED] Sent: Wednesday, Novembe

RE: virus software

2006-11-29 Thread Bobby Hartsfield
AVG from Grisoft still does an ok job but Zonelabs anti virus seems to be out ranking it now. I know AVG has a free edition and I'm pretty sure the anti-virus from Zonelabs is free as well. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message-

RE: Challenging Loop problem SOLVED

2006-11-29 Thread Bobby Hartsfield
Ha! Very nice. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 29, 2006 11:51 AM To: CF-Talk Subject: RE: Challenging Loop problem SOLVED If you would like to display the

RE: Challenging Loop problem.

2006-11-29 Thread Bobby Hartsfield
3^3 would be all possibilities though. There were exclusions I believe. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Teddy Payne [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 29, 2006 9:47 AM To: CF-Talk Subject: Re: Challenging

RE: Can't figure out why these ID's aren't unique

2006-11-29 Thread Bobby Hartsfield
the love of god... move the cart to the session scope. :-P ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 29, 2006 9:08 AM To: CF-Talk Subject: Can't figure out why thes

RE: CFQUERY: comma delimited list of id values

2006-11-29 Thread Bobby Hartsfield
dbo.tbl_recipe_monthly_winner where (month(recw_assign_month )= 01) AND (year(recw_assign_month )= 2006 ) ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 29, 2006 9:08 AM To: CF-Talk Subject

RE: Queries adding table Alias to column name

2006-11-29 Thread Bobby Hartsfield
want to hear and we'll see what we can do. ..:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bud [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 29, 2006 7:45 AM To: CF-Talk Subject: RE: Queries adding table Alias to column name >

RE: Vista (was: CrystalTech outage?)

2006-11-29 Thread Bobby Hartsfield
d too didn't they. So did they just code in the same old bugs or lie about writing it from scratch this time around? The only person and argument you have to worry about starting a debate in this trhead would be Dave the Disruptor claiming the all mighty MAC supremecy. ;-) ..:.:.

<    5   6   7   8   9   10   11   12   13   14   >