RE: Website Statistics Recommendations

2008-03-13 Thread Adkins, Randy
SmarterStats by SmarterTools -Original Message- From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2008 12:51 PM To: CF-Talk Subject: Website Statistics Recommendations All: Can anyone recommend a website statistics (log analyzer or otherwise) package that can

RE: Get a digit out of large number

2008-03-10 Thread Adkins, Randy
If it is always the 3rd digit from the left: If it is always the 3rd digit from the left: Are you trying to see if 8 is in the digits and if so get the location or something? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2008 9:21

RE: Need query help

2008-03-04 Thread Adkins, Randy
Could do a UNION to gather the results -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2008 10:56 AM To: CF-Talk Subject: RE: Need query help If you query is highly dynamic, this way may not be best. Let's say the user can specify groups that are o

RE: Aaack! What does this error message mean?

2008-02-20 Thread Adkins, Randy
try this: Since it is looking to see if "Email" is a structure or not. Since email is not a structure the error ir procdued. Unless you change it up to be: Email_To Email_From as the dot notation would represent a structure type declaration. -Original Message- From: Rick Faircloth

RE: Last Updated

2008-02-15 Thread Adkins, Randy
select top 1 last_updated from some_table order by last_updated_desc Unless you need to display each one and depending on db platform -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Friday, February 15, 2008 8:41 AM To: CF-Talk Subject: Last Updated Hey all,

RE: DB Insert error in SQL Server

2008-02-12 Thread Adkins, Randy
Is "WEIGHT" specified as a numeric field or varchar? If varchar, you need the '' relating to null. the same for ShipBase. Other than that, it looks okay to me. -Original Message- From: Ben Conner [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 12, 2008 1:35 PM To: CF-Talk Subject:

RE: MySQL Comparison Tool

2008-02-01 Thread Adkins, Randy
Navicat has the ability to compare database structures and show the differences as well as the SQL to sync the structures. Same for data sync. -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Friday, February 01, 2008 12:07 PM To: CF-Talk Subject: MySQL Comparison Tool

RE: CF App throwing Access access error

2008-01-25 Thread Adkins, Randy
It is probably locked by the Datasource connection from CF Admin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, January 25, 2008 11:35 AM To: CF-Talk Subject: CF App throwing Access access error Everyone is logged out, and there's no lock on the acces

RE: sql clear data

2008-01-04 Thread Adkins, Randy
Why the blank row of data then? Why not just have a flag toggled as deleted or inactive rather than deleting the content. You never know if you need to refer back to the content at a later date. -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Friday, January 04, 2008 1

RE: onApplicationStart

2008-01-03 Thread Adkins, Randy
Sweet.. thanks -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Thursday, January 03, 2008 3:00 PM To: CF-Talk Subject: Re: onApplicationStart >What is another way besides creating a temp file to explicitly reset >those variables? >Is there a way to make the Applic

RE: Struct Issue

2008-01-03 Thread Adkins, Randy
of one or more messages). On Jan 3, 2008 2:38 PM, Rick Root <[EMAIL PROTECTED]> wrote: > On 1/3/08, Adkins, Randy <[EMAIL PROTECTED]> wrote: > > Thanks. Sometimes the query will have multiple messages to be displayed > > with different messageIDs. Thus the reason I consi

onApplicationStart

2008-01-03 Thread Adkins, Randy
Question: When using the onApplicationStart within an Application.cfc, lets say I wanted to restart the Application to pickup some changes. Now I know you can cycle the CF Services but I do not have that access to the server. What is another way besides creating a temp file to explicitly reset tho

RE: Struct Issue

2008-01-03 Thread Adkins, Randy
Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Thursday, January 03, 2008 2:23 PM To: CF-Talk Subject: Re: Struct Issue On 1/3/08, Adkins, Randy <[EMAIL PROTECTED]> wrote: > > Here is the call to the getMessages function: (Yes it is set as an > object) > application

Struct Issue

2008-01-03 Thread Adkins, Randy
I have a CFC which returns a query based listing of error messages. Here is the CFC: select * from session.systemMessageStruct where message_id = '#arguments.messageID#'

RE: Dynamic ID's

2007-12-20 Thread Adkins, Randy
I know of someone who uses a Sequence table for the ID functions: Sequence table: table_name (varchar) last_sequence (int) next_sequence (int) Query the table based on table name get the next_sequence and then update The sequence table after the insert -Original Message- From: Rick San

RE: AJAX based multiple file upload

2007-12-14 Thread Adkins, Randy
May not be AJAX but the CF_ProFlashUpload is a great utility to show file upload progress and supports multiple files http://documentation.digital-crew.com/index.cfm/page/cf_proflashupload -Original Message- From: Ciliotta, Mario [mailto:[EMAIL PROTECTED] Sent: Friday, December 14, 200

RE: easy html wrap question

2007-12-06 Thread Adkins, Randy
Preserve this format -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: Thursday, December 06, 2007 10:22 AM To: CF-Talk Subject: OT: easy html wrap question How do I have a textarea keep the carriage returns so the data will display properly without being bunched u

RE: Replace Syntax

2007-11-13 Thread Adkins, Randy
Remove the single quotes from form.description. You are treating it as a string rather a variable -Original Message- From: Rick Sanders [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 13, 2007 9:25 AM To: CF-Talk Subject: Replace Syntax Hey list, I'm trying to replace double quotes

RE: CFC Not acting like I expect

2007-11-06 Thread Adkins, Randy
Well the function indicates to return a "query" structure where you are returning a single ID. Change the CFFUNCTION to return an integer -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 06, 2007 11:44 AM To: CF-Talk Subject: CFC Not acting like I ex

RE: Constantly execute (refresh?) page, for ?

2007-10-08 Thread Adkins, Randy
take a look at CFSchedule or the Scheduled Tasks in the CF Administrator. From: George Linderman [mailto:[EMAIL PROTECTED] Sent: Mon 10/8/2007 3:15 AM To: CF-Talk Subject: Constantly execute (refresh?) page, for ? Hey guys, I'm trying to make a little app th

RE: urgent help required - using a users selection to select specific data

2007-09-22 Thread Adkins, Randy
is being resubmitted to itself. On 9/22/07, Adkins, Randy <[EMAIL PROTECTED]> wrote: > > One issue, is your probably getting an error from: > FORM.TIMEDATE_PERIOD does not exist. > Unless the form is being submitted from a previous form. > > Are you submitting the f

RE: urgent help required - using a users selection to select specific data

2007-09-22 Thread Adkins, Randy
Are you having a problem or just don't know how to do the task? -Original Message- From: Peter Tanswell [mailto:[EMAIL PROTECTED] Sent: Saturday, September 22, 2007 9:55 AM To: CF-Talk Subject: Re: urgent help required - using a users selection to select specific data > > Hi there > > I

RE: urgent help required - using a users selection to select specific data

2007-09-22 Thread Adkins, Randy
/sbemail10.html On 9/22/07, Adkins, Randy <[EMAIL PROTECTED]> wrote: > One issue, is your probably getting an error from: > FORM.TIMEDATE_PERIOD does not exist. > Unless the form is being submitted from a previous form. > > Are you submitting the form right back to itself? &g

RE: urgent help required - using a users selection to select specific data

2007-09-22 Thread Adkins, Randy
One issue, is your probably getting an error from: FORM.TIMEDATE_PERIOD does not exist. Unless the form is being submitted from a previous form. Are you submitting the form right back to itself? If not, then why do you need the statement in the OPTIONs If so, add a form parameter at the top of

RE: urgent help required - using a users selection to select specific data

2007-09-22 Thread Adkins, Randy
Ok so what's the problem ? -Original Message- From: Toby King [mailto:[EMAIL PROTECTED] Sent: Saturday, September 22, 2007 10:27 AM To: CF-Talk Subject: urgent help required - using a users selection to select specific data Hi there I'm really stuck on this issue - have been trying to w

RE: A-MAZE-ing CSS Skill

2007-09-20 Thread Adkins, Randy
That is impressive From: Robert Harrison [mailto:[EMAIL PROTECTED] Sent: Thu 9/20/2007 9:52 AM To: CF-Talk Subject: A-MAZE-ing CSS Skill Not CF, but incredible coding. Just had to share. You'll appreciated this. A-MAZE-ing. http://www.xefer.com/maze-generato

RE: two actions in one form

2007-09-13 Thread Adkins, Randy
look at Javascript form.submit() From: Seamus Campbell [mailto:[EMAIL PROTECTED] Sent: Thu 9/13/2007 12:05 PM To: CF-Talk Subject: two actions in one form Hi I've got an external shopping cart (over which I have very little control). I want to send a shopping

RE: SQL select where in headache

2007-09-04 Thread Adkins, Randy
if session.status is a numeric list and PERMISSIONS is a numeric value, remove the single quotes: WHERE PERMISSIONS IN (#session.status#) From: Hugh Fidgen [mailto:[EMAIL PROTECTED] Sent: Tue 9/4/2007 3:24 PM To: CF-Talk Subject: SQL select where in headache

RE: Explode a string to single values

2007-08-23 Thread Adkins, Randy
#array[3]# BTW: Charlie had a faster way to dump the list element into an array. -Original Message- From: nicolai bass dh [mailto:[EMAIL PROTECTED] Sent: Thursday, August 23, 2007 11:28 AM To: CF-Talk Subject: Re: Explode a string to single values Hi Randy, thanks a lot for your fa

RE: Explode a string to single values

2007-08-23 Thread Adkins, Randy
#thisItem# -Original Message- From: nicolai bass dh [mailto:[EMAIL PROTECTED] Sent: Thursday, August 23, 2007 11:07 AM To: CF-Talk Subject: Explode a string to single values Hi, i´m a CF newbie and i have a question: I want to explode a variable into the single values. For e

OT: Domain Alias

2007-08-15 Thread Adkins, Randy
Does anyone know that (using HELM), if a domain alias can actually point to a sub-domain? example: Domain 1: www.domain1.com SubDomain: domain2.domain1.com Domain 2: www.domain2.com I want to setup a Domain Alias in Domain 1 that has www.domain2.com pointing to domain2.domain1.com Is that

RE: OT: SQL Manager?

2007-08-15 Thread Adkins, Randy
ab, set up a new alias. Go into EM and register the alias as a new sql server. On 8/15/07, Adkins, Randy <[EMAIL PROTECTED]> wrote: > Problem with that is, I do not run the server. It is a shared hosting > server > > -Original Message- > From: Zaphod Beeblebrox [

RE: OT: SQL Manager?

2007-08-15 Thread Adkins, Randy
the server and then register the alias in EM. On 8/15/07, Adkins, Randy <[EMAIL PROTECTED]> wrote: > Who can recommend a SQL Management utility other than Enterprise > Manager to manage multiple Microsoft SQL Databases and not having > multiple pieces installed like EMS SQL Manage

RE: OT: SQL Manager?

2007-08-15 Thread Adkins, Randy
Hmm didn't I mention that one already? -Original Message- From: Michael Wolfe [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 15, 2007 9:40 AM To: CF-Talk Subject: re: OT: SQL Manager? AquaData Studio http://www.aquafold.com From: &q

OT: SQL Manager?

2007-08-15 Thread Adkins, Randy
Who can recommend a SQL Management utility other than Enterprise Manager to manage multiple Microsoft SQL Databases and not having multiple pieces installed like EMS SQL Management Studio for SQL Server ( http://www.sqlmanager.net/en/products/studio/mssql ). Don't get me wrong they have a nice u

DW8 download?

2007-08-08 Thread Adkins, Randy
Anyone have a link to the Dreamweaver 8 downloads? I need to get that version. We have our own key for it just need to re-install. ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and

CFMX 7 / Vista

2007-08-07 Thread Adkins, Randy
Has anyone able to get the CFMX 7 installer to work on Vista? I did a Google and found a few sites that talk about it but some are talking about different items that helped them. Just wondering if anyone has solid set of install instructions or steps since I know it is CF not completing the serv

RE: CF / Alagad / Photography Questions

2007-08-07 Thread Adkins, Randy
. -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 07, 2007 9:46 AM To: CF-Talk Subject: RE: CF / Alagad / Photography Questions Thanks for the comments. I will see if Alagad has a sharpening option. If not, I may have to change to ImageCR. Just have to see

RE: CF / Alagad / Photography Questions

2007-08-07 Thread Adkins, Randy
ogram. -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Monday, August 06, 2007 5:21 PM To: CF-Talk Subject: RE: CF / Alagad / Photography Questions What kind of resolution (crisp look) can you obtain using ImageCR3 for a 19MEG file? If it can keep a sharp look for the res

RE: CF / Alagad / Photography Questions

2007-08-06 Thread Adkins, Randy
Checking it out now. May have to check with the hosting provider if they would install the CFX tag -Original Message- From: Justin Scott [mailto:[EMAIL PROTECTED] Sent: Monday, August 06, 2007 4:55 PM To: CF-Talk Subject: RE: CF / Alagad / Photography Questions > 2. If you convert the p

RE: CF / Alagad / Photography Questions

2007-08-06 Thread Adkins, Randy
What kind of resolution (crisp look) can you obtain using ImageCR3 for a 19MEG file? If it can keep a sharp look for the resizing of the image, then it will be great! I am downloading/installing and testing it now as well. -Original Message- From: Justin Scott [mailto:[EMAIL PROTECTED]

RE: CF / Alagad / Photography Questions

2007-08-06 Thread Adkins, Randy
Jordan, Thanks for the comments.. Yeah for now CF8 is not an option as it is running on a shared host that runs CFMX 7. The host does run PHP. I am not a PHP guru or anything how difficult is it to modify your PHP script? Any assistant is appreciated!! I am at wits-end with this client. Thanks

CF / Alagad / Photography Questions

2007-08-06 Thread Adkins, Randy
I have a client that wants to sell their photos online. ( awesome!!) Now mind you the clients in this scenario are not computer literate. We are running CFMX 7.02 and Alagad Image Component 2.0. So here is what we designed: Upload interface, they can select the photo from their hard drive (ba

OT: CFEclipse & Version Control?

2007-08-02 Thread Adkins, Randy
I am sure people are using CFEclipse with SVN but has anyone else use any other VC software in conjunction with CFE? Just wondering how well others integrate with CFE. TIA! ~| Create robust enterprise, web RIAs. Upgrade to ColdF

RE: Web Based Project Management Tool

2007-07-20 Thread Adkins, Randy
I think he indicated that LHP had problems with unicode characters. -Original Message- From: Christopher Jordan [mailto:[EMAIL PROTECTED] Sent: Friday, July 20, 2007 12:05 PM To: CF-Talk Subject: Re: Web Based Project Management Tool Lighthouse Pro (http://lighthousepro.riaforge.org) C

RE: Web Based Project Management Tool

2007-07-20 Thread Adkins, Randy
ProWorkFlow www.proworkflow.com -Original Message- From: Oğuz Demirkapı [mailto:[EMAIL PROTECTED] Sent: Friday, July 20, 2007 11:58 AM To: CF-Talk Subject: Web Based Project Management Tool Hi all, Can anyone suggest a web based project management tool which has also Unicode capabi

eCommerce Questions

2007-06-26 Thread Adkins, Randy
I have built shopping carts in the past for software and such but have never had to deal with shipping cost and adding taxes to the cost. So here are my two questions: 1. Tax Question: If a customer in South Carolina purchases an item from a vendor in Florida, what tax rate should be applied?

RE: converting a string to a date - most efficient way?

2007-06-15 Thread Adkins, Randy
May not be the most efficient way but: CreateDate(MID(myString,5,2), MID(myString,3,2), MID(myString,1,2)) -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Friday, June 15, 2007 12:05 PM To: CF-Talk Subject: converting a string to a date - most efficient way? So,

RE: Any see what is wrong with this query?

2007-06-06 Thread Adkins, Randy
Not sure if this is a typo BUT: There is a space between '06Jun2007_ ILS' in your query statement but not in your Logs Record set SQL SELECT Name FROM Logs WHERE Name = 'ChargedOut_06Jun2007_ ILS_105634322.txt' -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Wednes

RE: Form Encryption

2007-06-06 Thread Adkins, Randy
SSL is one piece of the pie you should have! -Original Message- From: Steve Kahn [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 06, 2007 11:59 AM To: CF-Talk Subject: RE: Form Encryption protect credit card and personal info; when the visitor submits form data at site and when the comp

RE: Jquery site

2007-06-01 Thread Adkins, Randy
Fine in Virginia -Original Message- From: Bader, Terrence C CTR MARMC, 231 [mailto:[EMAIL PROTECTED] Sent: Friday, June 01, 2007 12:10 PM To: CF-Talk Subject: Jquery site Can anyone get to http://jquery.com/ without getting a 500? If not, anyone have the contact info for the site owner

RE: cffile to remote pc

2007-05-30 Thread Adkins, Randy
ColdFusion Application Server must have access to the share. Check the user account that CF is running under. Might need to change it In services to use your account. -Original Message- From: Dave Francis [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 30, 2007 10:46 AM To: CF-Talk Subjec

RE: CF8 documention

2007-05-30 Thread Adkins, Randy
Check out the Product Details tab at: http://labs.adobe.com/technologies/coldfusion8/ -Original Message- From: Chris Hayes [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 30, 2007 8:49 AM To: CF-Talk Subject: CF8 documention I think I'm right in saying there isn't any CF8 documentation

RE: CFIF and suppressing a "register" button if event_date is in the past

2007-05-24 Thread Adkins, Randy
Take a look at the DateDiff function. You can use that to accomplish your task. -Original Message- From: Elaine Mingus [mailto:[EMAIL PROTECTED] Sent: Thursday, May 24, 2007 12:03 PM To: CF-Talk Subject: CFIF and suppressing a "register" button if event_date is in the past I have an exa

RE: CFID-CFTOKEN Major Issues. HELP!!!!

2007-05-24 Thread Adkins, Randy
Is there a message (comments) in here I am missing?? -Original Message- From: Asad Khan [mailto:[EMAIL PROTECTED] Sent: Thursday, May 24, 2007 10:26 AM To: CF-Talk Subject: Re: CFID-CFTOKEN Major Issues. HELP >> I am having a huge problem right now, I have an application where I >>

RE: Concepts of Developing Locally with CFEclipse

2007-05-17 Thread Adkins, Randy
Rick, What I do with my 8+ applications (websites/products), I have CFMX 7 Dev Edit installed. I have a copy of IISAdmin.net installed. I have all my sites under: D:\wwwroot\development\client sites\site 1 D:\wwwroot\development\client sites\site 2 . With the IISAdmin.net tool, I set the we

RE: Problem posting to CF-Talk

2007-05-17 Thread Adkins, Randy
I have received that quite a few times in the past. -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Thursday, May 17, 2007 9:43 AM To: CF-Talk Subject: Problem posting to CF-Talk Occasionally when I hit reply and type a response on top of a current post, then em

RE: Alagad Image Component

2007-05-11 Thread Adkins, Randy
a thought. -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Friday, May 11, 2007 1:39 PM To: CF-Talk Subject: Alagad Image Component I have just begun using the AIC and was curious if anyone knows a way to write text on the image going from bottom left to the top

Alagad Image Component

2007-05-11 Thread Adkins, Randy
I have just begun using the AIC and was curious if anyone knows a way to write text on the image going from bottom left to the top right (diagonally)? It is very simply to use drawSimpleString() function to write the text but wonder if there is a way to set the starting (x,y) and ending (x,y) coo

RE: Dir listing with cfdirectory

2007-05-10 Thread Adkins, Randy
The only issue I see is to truly determine that a folder ONLY contains folders, is that you have to access each of the subdirectories within the said folder to check if any files exists. If so, then it does not meet your requirement. So you would need to do a recursive listing for each directory i

RE: Multi-Language Site

2007-05-09 Thread Adkins, Randy
One of the obstacles I had was JS. I had to create separate JS files Based on the locale (language) so that my alert messages would be in The right language. Other than that, it was just loading the right language files are start. If pulling from a database just have it select where lang = spanish

RE: File Details

2007-05-04 Thread Adkins, Randy
u use cffile.serverFileExt? ;) http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/ht ml/wwhelp.htm?context=ColdFusion_Documentation&file=0253.htm Rick On 5/4/07, Adkins, Randy <[EMAIL PROTECTED]> wrote: > I usually to a ListLast(cffile.serverfile,"."

RE: File Details

2007-05-04 Thread Adkins, Randy
I usually to a ListLast(cffile.serverfile,".") -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: Friday, May 04, 2007 6:25 AM To: CF-Talk Subject: RE: File Details Thanks for that pal, What's the best way to REGEX out that extension? I'm pretty lame w

RE: collecting IP Address through database shopping cart

2007-04-13 Thread Adkins, Randy
CGI.REMOTE_ADDR -Original Message- From: tracy sanchez [mailto:[EMAIL PROTECTED] Sent: Friday, April 13, 2007 4:11 PM To: CF-Talk Subject: collecting IP Address through database shopping cart Hello,I have a shopping cart and I want to capture our clients IP Addresses when they order.it

RE: Could not find prepared statement with handle 2 - suddenly?

2007-04-10 Thread Adkins, Randy
My guess is that Reportnumber is an INTEGER field but the CFQUERYPARAM you are specifying indicates a VARCHAR field. -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 10, 2007 7:43 AM To: CF-Talk Subject: Could not find prepared statement with handl

RE: Printing a page without the standard header and footer

2007-03-30 Thread Adkins, Randy
+1 on pushing the content to PDF to be printed -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Friday, March 30, 2007 9:44 AM To: CF-Talk Subject: RE: Printing a page without the standard header and footer You can't control any browser's printing features except

RE: cfmail question

2007-03-29 Thread Adkins, Randy
Run a clean up process nightly to remove the files or maybe an hourly basis depending on the number of files created during the timeframe. -Original Message- From: Deepak Gupta [mailto:[EMAIL PROTECTED] Sent: Thursday, March 29, 2007 4:27 PM To: CF-Talk Subject: cfmail question Hi I am

non_WebServer / WebServices

2007-03-29 Thread Adkins, Randy
I have 4 different web servers that I manage along with 2 database servers. On the webServers I set WebServices to be called to obtain the amount of available hard drive space on all of the drives. Now doing that with CF was simple. Any ideas on how I can get the same request against database

RE: Only one record

2007-03-28 Thread Adkins, Randy
: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 28, 2007 12:55 PM To: CF-Talk Subject:RE: Only one record Since you are only doing ONE grouping, that is all you will get in return: Try this: #name# -- #email1# -Original Message- From: Orlini, Robert

RE: Only one record

2007-03-28 Thread Adkins, Randy
Since you are only doing ONE grouping, that is all you will get in return: Try this: #name# -- #email1# -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 28, 2007 12:49 PM To: CF-Talk Subject: Only one record I have two queries. One get

HD Space using CF?

2007-03-23 Thread Adkins, Randy
Anyone know of a utility that I can use to determine how much FREE Hard Drive space is available on a server? Not a drive, but the server as a whole. I know there is a script on CFLIB, that will obtain the free space on a drive: function AvailableSpace(drvPath) { Var fso = CreateObject("COM"

RE: Sitemaps

2007-03-23 Thread Adkins, Randy
Well you could write a simple utility to go through the folders and count those pages. However if you are looking a what is the count of pages a user will see may be different Since the end user does not see the number of includes on a single page. -Original Message- From: Steve LaBadie

RE: The dreaded question of "intellectual property"

2007-03-21 Thread Adkins, Randy
Usually what I do, is sell a copy of the license, not ownership unless it is something that is ONLY GEARED towards their company and could not be used by other organizations. That was a stipulation that I add to the contract prior to beginning the work. That way I can re-sell the work if needed(wa

RE: _Debugging?

2007-03-19 Thread Adkins, Randy
: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Monday, March 19, 2007 11:30 AM To: CF-Talk Subject: Debugging? Is there a way to have Debugging turned OFF for one site but on for everything else? I am building an internal application and would like the Debugging on that site off. Since developers

Debugging?

2007-03-19 Thread Adkins, Randy
Is there a way to have Debugging turned OFF for one site but on for everything else? I am building an internal application and would like the Debugging on that site off. Since developers are using the same server for other applications, the debugging (CF Admin settings) is turned on. TIA!

RE: please help me to debug this code... thanks

2007-03-16 Thread Adkins, Randy
What is the problem? I see that as long as your are running on PORT 80, you will get redirected as indicated http://192.168.1.7";> Are you expecting something else?? ~| ColdFusion MX7 by Adobe® Dyncamically transform

RE: please help me to debug this code... thanks

2007-03-16 Thread Adkins, Randy
What is the problem? I see that as long as your are running on PORT 80, you will get redirected as indicated http://192.168.1.7";> Are you expecting something else?? -Original Message- From: Adrian C. [mailto:[EMAIL PROTECTED] Sent: Friday, March 16, 2007 12:20 PM To: CF-Ta

RE: IgniteFusion CFML

2007-03-15 Thread Adkins, Randy
Well I find that some of the TAGS I use is not supported by IgniteFusion. CFCACHE CFCHART (Pretty much all of them) CFMAILPARAM (You got to be kidding me!!) CFQUERYPARAM (HOLY COW YOUR JOKING RIGHT??) ** Never leave home without it CFXML ??? Functions: StructCopy QuotedValueList XMLParse Free o

RE: Why is this not working

2007-03-13 Thread Adkins, Randy
TED] Sent: Tue 3/13/2007 12:16 PM To: CF-Talk Subject: Re: Why is this not working No bueno. On 3/13/07, Adkins, Randy <[EMAIL PROTECTED]> wrote: > > Nature of the beas

RE: Why is this not working

2007-03-13 Thread Adkins, Randy
Nature of the beast. Try this: Selected>#Status# From: Bruce Sorge [mailto:[EMAIL PROTECTED] Sent: Tue 3

RE: PDA Website?

2007-03-13 Thread Adkins, Randy
This is for a client in Florida, so I do not think Cold Weather will be an issue. The barcode scanner would be too much for them. But with a built-in keyboard will be required since it is easier than the 12-digit keys. The people using it are construction foremans and not up on the use of com

RE: TIMEZONE issues?? anyone?

2007-03-12 Thread Adkins, Randy
if we did same stuff. tw On 3/12/07, Adkins, Randy <[EMAIL PROTECTED]> wrote: > All of mine are running fine. Win 200 and W2K3 servers > > > > From: Tony [mailto:[EMAIL PROTECTED] > Sent: Mon 3/12/2007 12:03 PM > To: CF-Talk > Sub

RE: TIMEZONE issues?? anyone?

2007-03-12 Thread Adkins, Randy
All of mine are running fine. Win 200 and W2K3 servers From: Tony [mailto:[EMAIL PROTECTED] Sent: Mon 3/12/2007 12:03 PM To: CF-Talk Subject: TIMEZONE issues?? anyone? our servers, patched, changed, etc, tzupdater too, are not working right. windows 2000 any i

RE: Automated Local Printing of Remote Report

2007-03-08 Thread Adkins, Randy
May want to search the archives as Automatic Printing comes up QUITE often. -Original Message- From: E C list [mailto:[EMAIL PROTECTED] Sent: Thursday, March 08, 2007 11:58 AM To: CF-Talk Subject: Automated Local Printing of Remote Report Hello- I am wondering if anyone has come up wit

RE: cfform flash cfselect not showing items in the list

2007-03-08 Thread Adkins, Randy
Page not found -Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: Thursday, March 08, 2007 8:58 AM To: CF-Talk Subject: cfform flash cfselect not showing items in the list My servers had been running fine till I got hit with a virus last week that shut down everything.

RE: totals not displaying

2007-03-05 Thread Adkins, Randy
I would verify in the DB that the field exists and it has valid data. If the #total# is a calculated variable, you are now showing how you are calculating it exactly. I would begin at the Query level and work your way down. Use CFDUMP and dump the results of the Query to validate the data -O

RE: Fizzbuzz. Simple programming problems.

2007-02-28 Thread Adkins, Randy
I think this is a classic case where interpretation can lead to various results. Without concise details about the desires results, a developer can have different views. -Original Message- From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 28, 2007 8:34 AM To:

RE: driving me bonkers now

2007-02-26 Thread Adkins, Randy
Then I would lean towards contacting CT (as you are doing) to see about the email in the undeliv folder and see if it can help any. By looking at the TO line or if the server requires User Authentication for sending. -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent

RE: driving me bonkers now

2007-02-26 Thread Adkins, Randy
Is the domain's email address like : SOME NAME <[EMAIL PROTECTED]> OR [EMAIL PROTECTED] My point was that if you used the latter and it worked, then I would search for the reason it Does not like the User Friendly type naming convention of 'Some Name <[EMAIL PROTECTED]' -Original Messa

RE: driving me bonkers now

2007-02-26 Thread Adkins, Randy
If the email is in the Undelivered folder for CF, then it is possible that it deals with the way The TO line is constructed. Since it is being sent successfully when hardcoding the TO line, that would be the best place to begin looking. -Original Message- From: Will Tomlinson [mailto:[EM

RE: Is this the best approach?

2007-02-20 Thread Adkins, Randy
Perhaps a start and end date to the Sweepstakes. Just at first glance. -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 20, 2007 4:10 PM To: CF-Talk Subject: Is this the best approach? I have been tasked by one of my customers to create an on-line s

RE: Update: error emails firing for no reason (I still need help)

2007-01-23 Thread Adkins, Randy
Check your FORM tag along with any JS validation your doing. Sometimes it can happen if you have a form tag that has: OnSubmit:CheckForm() instead of: onSubmit="return CheckForm();" That way if the form validation false it would return false and NOT process the form. Else might be doing it twice.

RE: CFML IDE's

2007-01-18 Thread Adkins, Randy
Eclipse (CFEclipse plug-in) HomeSite+ -Original Message- From: John Sterrett [mailto:[EMAIL PROTECTED] Sent: Thursday, January 18, 2007 10:57 AM To: CF-Talk Subject: CFML IDE's Does anyone have any recommendations for Coldfusion IDE's on Windows platform other than Dreamweaver?

RE: One year behind

2007-01-08 Thread Adkins, Randy
Close But not quite: #Year(now())# (will give you 2007) #Year(dateAdd('y',-1,now()))# (will give you 2006) Or you can do the long way: #DateFormat(now(), '')# (will give you 2007) #DateFormat(dateAdd('y',-1,now()), '')# (will give you 2006) -Original Message- From: Orlini,

RE: Number to currency words

2007-01-08 Thread Adkins, Randy
Check CFLIB.org I recall something like that before. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, January 08, 2007 11:53 AM To: CF-Talk Subject: Number to currency words Is there anything out there that will take a number and convert it to words li

RE: OT: Easy SQL Question

2007-01-05 Thread Adkins, Randy
Why not just one WHERE clause without the commas? It would still catch any item within the delimited list: emaildates like '%#todaysDate#%' That would catch any of the dates -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Friday, January 05, 2007 9:22 AM To

RE: SQL Server - starting integer at 1000

2007-01-03 Thread Adkins, Randy
In SQL Server, open the table in Design mode, select the field and set it to Identity and set the SEED to 1000. -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 03, 2007 7:58 AM To: CF-Talk Subject: SQL Server - starting integer at 1000 I've

RE: Help with Form Validation Against Spam

2007-01-03 Thread Adkins, Randy
Another suggestion in addition to validating the name fields is to use Captcha To help stop the spamming of the bots. -Original Message- From: Scott Wilson [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 03, 2007 7:41 AM To: CF-Talk Subject: Re: Help with Form Validation Against Spam

RE: 5 days behind

2007-01-02 Thread Adkins, Randy
#DateFormat(DateAdd('d',-x,Now()),"MM/DD/")# -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 02, 2007 10:08 AM To: CF-Talk Subject: 5 days behind I have an interesting dilemma. I need to populate a Select

RE: CFID and CFToken

2006-12-29 Thread Adkins, Randy
something like that? Cheers, Chris Adkins, Randy wrote: > Well not really with CF Code but why not use the Search/Replace > function within HomeSite/DW/ or Eclipse and update the pages that way? > > > -Original Message- > From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED] >

  1   2   3   4   5   6   >