RE: Current time in seconds

2007-07-17 Thread Robert Harrrison
Do you mean like the total number of seconds since the beginning of AD? Robert B. Harrison Director of Interactive services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 T : 631.231.6600 Ext. 119 F : 631.434.7022 www.austin-williams.com Great advertising can't be

RE: createodbcdate

2007-07-16 Thread Robert Harrrison
Definitely Use DateAdd(). Robert B. Harrison Director of Interactive services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 T : 631.231.6600 Ext. 119 F : 631.434.7022 www.austin-williams.com Great advertising can't be either/or... It must be . -Original Message-

RE: Confirmed: at least one more CF8 Release Candidate

2007-07-09 Thread Robert Harrrison
Ben Forta [EMAIL PROTECTED] wrote: Yep, ***SOON*** ;-) Is this soon in dog years or soon on a cosmological scale? Robert B. Harrison Director of Interactive services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 T : 631.231.6600 Ext. 119 F : 631.434.7022

JS Winhandle

2007-07-03 Thread Robert Harrrison
I'm opening a window to execute a print function (prints something not on the page), then closing the window. This works great. Question is, how do I get the temp window to open behind my current browser? Thanks Robert B. Harrison Director of Interactive services Austin Williams 125

RE: CF Editor

2007-06-26 Thread Robert Harrrison
Dreamweaver is evil. Yeah, I got that. I've been coding a complicated page by hand. I needed to add a drop down menu, so I edited in Dream Weaver to use their drop down. It changed my document headers and moved my CFtags all over the place. It actually destroyed the code. Fortunately I had a

CF Editor

2007-06-25 Thread Robert Harrrison
Well, after years I still find myself favoring Home Site over Dream Weaver; although Adobe's support for Home Site appears dubious, at best. I hand code, as I'm sure many of you do, and just prefer the simple interface to all the stuff Dream Weaver throws in your face. A couple of questions on

CFDIRECTORY filter shortcoming

2007-06-22 Thread Robert Harrrison
I use CFDIRECTORY all the time to scan the image library for various maintenance purposes. I want to read and list only image files. These may be ..jpg, .gif, or .png, yet CFDIRECTORY can only filter on one file type. Does anyone know of a way I can extend the file filter and get what I want in

RE: Tables Not Working Right

2007-06-22 Thread Robert Harrrison
It has to do with the HTML. You're aligning left. If the screen is wide enough (maybe you have a wider monitor now) the tables will align left, then left against the next table, etc., until you are out of display space, in which case the next left aligned table will wrap to the next line. You

Stupid Date Question

2007-06-15 Thread Robert Harrrison
I validate dates all the time, but in this case I have to combine three separate fields and validate if the date is valid. code is: cfif IsDate(form.day/form.month/form.year) is false BAD DATE /cfif Anyone see what's wrong here. It's not validating. Robert B. Harrison Director

RE: How many CF developers does it take to manage a site ???

2007-06-11 Thread Robert Harrrison
It really depends on the sites. I've managed as many as 50 CF sites and also do new development at the same time. Some of them are stable and hardly ever get touched. Others are constantly changing and require a lot of work. It's not really the number of sites that's the issue, it's the total

Instant Credit Check

2007-06-11 Thread Robert Harrrison
Does anyone know of a plug-in I can use (in a secure setting) that would return an applicants credit score so I could process a credit application with instant approval? Thanks, Robert B. Harrison Director of Interactive services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788

RE: ColdFusion Webserver

2007-05-29 Thread Robert Harrrison
First you have to have a web server with an internet connection and port 80 open to http traffic. You'll also need the domain name pointed to the IP where your web server has the open port and may need to configure your firewall to pass through traffic to that server via the internal IP schema you

RE: ColdFusion Webserver

2007-05-29 Thread Robert Harrrison
IIS can service hundreds of sites. It's a fully functional tool. On XP it's made for local testing and can run a couple of concurrent session. On Windows server it can run whatever load the server can handle. It's the Windows version of Apache. Robert B. Harrison Director of Interactive

RE: pop-up calendar selector

2007-05-10 Thread Robert Harrrison
You can do that using CFCALENDAR. Robert B. Harrison Director of Interactive services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 T : 631.231.6600 Ext. 119 F : 631.434.7022 www.austin-williams.com Great advertising can't be either/or... It must be . -Original

RE: CSS Help

2007-05-08 Thread Robert Harrrison
I would expect it would need to be a cfinclude rather than a linkref. I agree. I do something similar on one of my sites. It works fine when I include the style content using a CF include inside the style/style tags as a page style. I tried something similar with a dynamic style sheet and