Slighlty OT: Exporting my Code Sweeper Settings

2002-03-13 Thread t nelson
Hi All, Sorry for the OT post but, I wanted to know if there is a way to export my Code Sweeper settings from CF Studio? I spent a while getting my settings just the way I wanted them on my Home PC but now I would like to take those with me to use at work. Sure I could sit at my PC at work

Yet another reason why I hate Netscape

2001-09-20 Thread t nelson
Hi all, I am working on an application which uses some a session variables. It works perfectly in IE (of course), however when I try to load the exact same page(s) in netscape the variable does not exist. I even went so far as to write a couple of simple test pages. All they do is set a

Re: Yet another reason why I hate Netscape

2001-09-20 Thread t nelson
Matt, I Removed SETCLIENTCOOKIES=YES and now it works with good ol' Nutscrape. I would however be very interested in finding out why this works Oh well, live and learn I guess. Maybe one of the CF guru's in the community can enlighten me as to why this works. Thanks for the help

Re: Siily question re CFDIRECTORY and downloads

2001-08-14 Thread t nelson
Mike, Probably the fastest way to do this would be to rename the extensions on your files to .zip or .exe(for example). this way your browser will automatically start download as soon as they are clicked. HTH, Nelson Original Message Follows From: Mike Brunt [EMAIL PROTECTED]

Re: File upload question

2001-08-08 Thread t nelson
Phill, In your action page you can specify what types of files to accept. For example: CFFILE FILEFIELD=file2Upload NAMECONFLICT=OVERWRITE DESTINATION =C:\Inetpub\wwwroot\files\ ACTION = UPLOAD ACCEPT = image/gif, image/jpeg, application/doc, etc... hth, A T Nelson Senior Developer MLM

Re: OT: Bar codes

2001-07-30 Thread t nelson
Jacob, One of the companies I was contracting for flirted with the idea of doing something like this. However, we decided not to go this route. The good thing is that I did find a web site which may help you out: http://www.adams1.com/pub/russadam/webapps.html HTH Nelson Original

Re: Slightly OT: Tracking Usage

2001-05-25 Thread t nelson
Thanks Steve. It worked out perfectly. Nelson Original Message Follows From: Steve Reich [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: Slightly OT: Tracking Usage Date: Thu, 24 May 2001 16:25:29 -0400 Received: from [207.31.122.140] by

Slightly OT: Tracking Usage

2001-05-23 Thread t nelson
Hi all, Sorry about the OT post but I am a little stumped. I was wondering if anyone out there knows how to find out the following information about visitors to a web site: Screen Resolution: (ie. 1024x768, 800x600) Color Depth: (ie. 16-bit, 32-bit, 256 colors, etc...) Http Referral: (ie.

Re: session time out

2001-03-21 Thread t nelson
Howdy, I usually set my application like this cfapplication name="the name" sessionmanagement="yes" sessiontimeout=#createtimespan(0,0,60,0)# notice the 60 minutes as opposed to 1 hour. that's not such a big deal but this is: cflock timeout="3600" scope="Application" CFSET

Re: Dynamic Image Resize

2001-02-06 Thread t nelson
Tim, you could do this without a script like this: table height="100%" width="100%" tr td img src="somefile.jpg" height="100%" width="100% /td /tr /table this makes it so that no matter how big or small a persons browser is, it will always take up the exact

Re: shoppin cart help

2001-01-26 Thread t nelson
Jay, try this. http://hotwired.lycos.com/webmonkey/99/49/index4a.html cheers, nelson Original Message Follows From: "Jay Patton" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: shoppin cart help Date: Fri, 26 Jan 2001 09:47:11 -0700 Received:

Re: Anyone else had this problem before?

2001-01-24 Thread t nelson
Thanks everyone. turns out that you all were right I simpy had to change datatypes in my database (duh). thanks again, nelson Original Message Follows From: "t nelson" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Anyone else had th

Anyone else had this problem before?

2001-01-23 Thread t nelson
Hi All, I was just wondering if anyone out there had this problem before and what they did to correct it? Here's what I am trying to do: cfquery name="qryName" datasource="MyDatasource" SELECT UsersID, UsersTotalPrice FROM TableName WHERE UsersID = (#UsersID#) ORDER BY

Re: Conditional loops

2001-01-16 Thread t nelson
Rusian, of course, its probably easier to write it this way though for example: CFSET varNumOfRecs = 20 CFSET varMyIndex = 0 CFLOOP condition="varMyIndex LTE #varNumOfRecs#" CFSET varMyIndex = "#varMyIndex#" + 1 UL LICFOUTPUT#varMyIndex#/CFOUTPUT/LI /UL /CFLOOP

Putting a temporary hold on a quantity

2001-01-16 Thread t nelson
Hi All, I have a small dilemma on my hands. I am trying to figure out a way to place a temporary hold on a quantity in my database. Here's the scenario: I am in the process of finishing up an e-commerce site. like every other commerce site, users can go through items and place them into a

Re: HELP!!

2001-01-12 Thread t nelson
Jay, Here's a suggestion. It looks like you are trying to submit each field as if all of them were "Text". if you have any number, numeric or Integer field in your database then you should be leaving off the single quotes ''. it also might not hurt to check your database structure to ensure

Re: Caching a Query: How To?

2001-01-12 Thread t nelson
James, try this out. cfquery name="qryName" datasource="yourDatasource" cachedwithin="#CreateTimeSpan(0,0,10,0)#" the most important is CreateTimespan this caches your results for 10 minutes. #CreateTimeSpan(days, hours, minutes, seconds)# cheers and good luck, nelson Original

Re: checking multiple boxes w/single button?

2001-01-09 Thread t nelson
Dave, try this: http://javascript.internet.com/buttons/check-all.html#source cheers, nelson Original Message Follows From: "Bosky, Dave" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: checking multiple boxes w/single button? Date: Tue, 09 Jan

Re: Query confusion - CF not recognising query name

2001-01-08 Thread t nelson
here's a real silly question but is cfset variables.IDCount=getPeopleInfo.RecordCount written exactly like this or is it written like cfset variables.IDCount=#getPeopleInfo.RecordCount# leaving the # off could be your problem. cheers, nelson Original Message Follows From: "Philip

Re: cfif : Okay within cfinput tag?

2001-01-05 Thread t nelson
Paul, it's not too clear what you are really trying to accomplish by placing the cfif tags within the cfinput. if you are trying to have a radio button display only when the varFromDB EQ english then you would want to put your CFIF tags outside your cfinput tags. so your code would be like

simple problem

2001-01-05 Thread t nelson
Hi all, I have a small dilemma on my hands. i was wondering if there is any way to append a variable to another variable? basically this is what i am trying to do: cfset varMyIndex = 0 cfloop condition="varMyIndex LESS THAN OR EQUAL TO 500" cfset varMyIndex = "#varMyIndex#" + 1 cfif

Re: OT: Does JavaScript have a Trim function?

2000-12-19 Thread t nelson
try this "Trim(string)" this will remove all white space from the beginning and end of your string. ex. if you have a user form field named "blahblah" you could write #Trim(blahblah)#. hope this answers your questions. good luck. cheers, nelson Original Message Follows From:

Anyone else had this problem before?

2000-12-18 Thread t nelson
hi all, i was just wondering if anyone had run into this problem before and what you did they do to solve it? I have a table which i populated using cfoutput basically the user can go through a given number of records, 25 at a time (in reality they can select more this is just an example).

Re: Is this even possible?

2000-12-15 Thread t nelson
e tag like this: cfquery name="GetItems" SELECT Blah, Bleah FROM Blah /cfquery cfoutput query="GetItems" img src="/images/#GetItems.category##GetItems.image#" /cfoutput That would do it for you. Ive incorporated something like this into a shopping cart before, works li

Inserting quantity into my database

2000-11-21 Thread t nelson
Hi all, Quick question. I am trying to insert the values from a quantity field, which the user fills in, into my database. The problem is that I have multiple values for quantity as the user can change the quantity they desire, for more than one part at a time. Is there a way for me to loop

Counting Checkboxes

2000-11-15 Thread t nelson
Hi all, I have an application that i am building where the end user can pull up multiple peripheral parts for any given base system(s). After that they can select the peripheral parts they want by selecting the corresponding checkboxes. Next, the user is able to enter the number of parts they

Multiple Select Difficulties

2000-11-13 Thread t nelson
Hello everyone, I am facing a major problem right now. I have an application where the user can search for more than one piece of inventory at a time. They can do this by typing in multiple part numbers and seperating them with a comma. The problem I am facing is that when I pass these

cfselect difficulties with javascript overtones

2000-11-03 Thread t nelson
Hi everybody, I am looking for a little help right now. I am trying to make a dynamically populated drop down box, of options, so that a user can search for items a little bit easier. right now they have to scroll through each record, 25 at a time, until they get to the category they want.

Re: Manipulating Cursor Position In Applications

2000-11-01 Thread t nelson
CF-Talk Subject: RE: Manipulating Cursor Position In Applications body onLoad="document.formname.fieldname.focus();" -Original Message- From: t nelson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 31, 2000 2:02 PM To: CF-Talk Subject: Manipulating Cursor

Manipulating Cursor Position In Applications

2000-10-31 Thread t nelson
Hello All, I have a slight problem on my hands. I am trying to make the cursor default to the beginning of my input fields. For example if a user opens up a cf_form page, I want them to be able to begin inputting their data without having to use their mouse to move their cursor into position.

Re: Manipulating Cursor Position In Applications: Many Thanks everyone

2000-10-31 Thread t nelson
Thank you everyone. Problem reolved. Again many many thanks. Original Message Follows From: "t nelson" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Manipulating Cursor Position In Applications Date: Tue, 31 Oct 2000 19:02:23 GMT MI

Template Interface Dilemma

2000-09-27 Thread t nelson
I have got an interesting problem and need your help desperately. A client wants to create an interface which would allow a user to instantly cross verify a new database against a master database. They then want all matching records to be written to a separate database. The easy part is that