Re: cfhtmlhead

2002-03-11 Thread Brian Scandale
()' cfinclude template=incHeader.cfm In incHeader.cfm: cfparam name=bodytagtext default= body text=black bgcolor=whitecfif Len(bodytagtext) cfoutput#bodtytagtext#/cfoutput Jim - Original Message - From: Brian Scandale [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March

popUp Window trouble

2002-03-11 Thread Brian Scandale
One of my popUps always uses the same window for display... as expected. The other always generates a new window... (which clutters the desktop and uses resources). Both are called from the same page. I have a header that always has a help button in it. It calls help.cfm which pops up a help

cfhtmlhead

2002-03-10 Thread Brian Scandale
Is there a similar tag to cfhtmlhead that is used to add content into the body tag? Can't seem to find it if it exists thanks, Brian __ Why Share? Dedicated Win 2000 Server ยท PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER

Re: cfhtmlhead

2002-03-10 Thread Brian Scandale
. At 01:09 AM 3/11/02 -0500, you wrote: cfoutput :) What are you trying to accomplish? jon Brian Scandale wrote: Is there a similar tag to cfhtmlhead that is used to add content into the body tag? Can't seem to find it if it exists thanks, Brian

input readonly or disabled

2002-03-10 Thread Brian Scandale
I've been using disabled in text form fields quite a bit lately when I need to gray out something and keep users from changing it... Today I notice that Netscrape seems to not honor the readonly/disabled. Am I just coding this wrong or does Netscrape truly not recognize these two attributes

Re: calculate price based on lots of ages given from a form?

2002-03-08 Thread Brian Scandale
How about this. Via Brute Force... cfset subtot1 = 0 cfset subtot2 = 0 cfif form.age1 LT 11cfset subtot2 = subtot2 + 1/cfif cfif form.age1 GT 10cfset subtot1 = subtot1 + 1/cfif cfif form.ageNth LT 11cfset subtot2 = subtot2 + 1/cfif cfif form.ageNth GT 10cfset subtot1 = subtot1 + 1/cfif or get

odd cookie behavior

2002-03-07 Thread Brian Scandale
Today... right in the middle of working with a cf app when suddenly the Applications starts saying I need to enable cookies. I check and IE 5.5 cookies are enabled... so I fire up Netscrape and it has no problems with the application. It seems to be an IE only problem. S I turn

odd cookie behavior - more serious

2002-03-07 Thread Brian Scandale
This is more serious than my previous post suggests. I just attempted to connect to the application using a Mac and IE4.5 and got the same error... yet yesterday no problem at all... === previous message = Today... right in the middle of working with a cf app when

Re: quick SQL question for my add/edit page

2002-03-07 Thread Brian Scandale
cfset hiddenField = left(trim(UserInputString),1) this should move the first non-blank entry into the variable hiddenField At 01:05 PM 3/7/02 -0800, you wrote: Hello, I need to add a new hidden field to my add/edit page that will update the table when a new record it added or updated..not

RE: odd cookie behavior - more serious

2002-03-07 Thread Brian Scandale
bamboozled At 05:10 PM 3/7/02 -0500, you wrote: Dumb question: Is this occuring on multiple IE machines? Did you try deleting all of your cookies? Your cookie file for that domain may have gotten corrupted. -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Thursday

text file processing

2002-02-25 Thread Brian Scandale
I need a couple of pointers on text file processing. First I use cffile to get the file into a memory variable Now I need to: - parse the file one line at a time searching for a specific string and when I find it - read 7 more lines and then begin reading the next 15 lines, one line at a

text file processing

2002-02-25 Thread Brian Scandale
I figured it out thanks, Brian cffile action=READ file=/var/www/html/af/testfile.txt variable=txt cfset rowcount = 0 cfloop list=#txt# delimiters=#chr(10)# index=i cfset rowcount = rowcount +1 cfif i contains To: [EMAIL PROTECTED] ==br

RE: QUERY Differences?

2002-02-24 Thread Brian Scandale
solutions, inc. http://www.atnetsolutions.com -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 23, 2002 9:48 PM To: CF-Talk Subject: QUERY Differences? These two selects BOTH work. They report very similar execution times. Is one method

dynamic input text/background color

2002-02-24 Thread Brian Scandale
I have some forms where javascript is used to sum some user input text values and put the summation into one of the forms input text fields. When the sum exceeds some threshold I want the sum to appear as RED text -- or better yet RED background and WHITE text. I've seen this done with

RE: dynamic input text/background color

2002-02-24 Thread Brian Scandale
'; document.forms.formname.textname.style.color = 'white'; } I'm pretty sure style.backgroundColor works on NS and IE. _ steve oliver senior internet developer atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent

QUERY Differences?

2002-02-23 Thread Brian Scandale
These two selects BOTH work. They report very similar execution times. Is one method preferred? Better? Technically Correct? SELECT History_ID, LastName, FirstName FROM History, Operator WHERE History.Device_ID = #Client.wDevice_ID# AND Operator_ID = History.Operator_ID_Out AND

query troubles

2002-02-16 Thread Brian Scandale
I have a query that I'm not sure how to do... Essentially, this query works properly and returns one row. IF Indx.Operator_ID_In has a match in the Operator table. Otherwise it returns zero rows. Is there a proper way to write this query so that it returns one row, with the Operator fields

Re: OT Firewalls

2002-02-16 Thread Brian Scandale
Joseph, A success story. I've been using freesco for quite some time now with much success. I had a problem port forwarding for a bit... until I figured out my cable ISP began blocking port 80. Then all went well when I reconfigured for that problem. At 02:42 PM 2/16/02 -0800, you wrote:

Re: query troubles

2002-02-16 Thread Brian Scandale
ON dbo.Indx.Operator_ID= dbo.Operator.Operator_ID WHERE (dbo.Indx.Indx_ID = #theLot.Indx_ID#) - Original Message - From: Brian Scandale [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, February 16, 2002 4:42 PM Subject: query troubles I have a query that I'm not sure

Re: netscape page display

2002-02-13 Thread Brian Scandale
Yep... Check for proper closing of td, tr, and table tags... Depending upon the specifics Netscape can have trouble if not completed properly. At 11:56 AM 2/13/02 -0500, you wrote: Hello, Any reason why a page would display OK on IE, but not display anyhting on Netscape? I had this problem

RE: form troubles

2002-02-10 Thread Brian Scandale
would just break this form into 2 separate forms and pass the ID as a hidden field within. Encapsulate your select element in the first form, and the ADD/Edit/Delete in another form tag pair. This makes it easier logic wise. - Original Message - From: Brian Scandale [EMAIL PROTECTED

RE: form troubles

2002-02-10 Thread Brian Scandale
Try using the onChange event on the select box. Dunno why you're usi ng the onclick event. -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: February 9, 2002 2:57 AM To: CF-Talk Subject: form troubles Nothing is selected when this form loads until the user clicks

RE: form troubles

2002-02-10 Thread Brian Scandale
with. -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Stas, I'm not sure what you mean... for instance how would I know what was dynamically selected to include as a hidden value in the second form... the first one is where it is declared dynamically by the user. I guess I

form troubles

2002-02-09 Thread Brian Scandale
Nothing is selected when this form loads until the user clicks inside the select box. Then the form autosubmits via the onclick= Problem is that This form submits a form.submit=DeleteType even though they clicked on the select box, NOT the Submit Button. This ONLY happens on a Mac running IE

Re: Future of the internet

2002-02-09 Thread Brian Scandale
Jim, To Funny Thanks for making me laugh! It's been a loong night. At 02:12 AM 2/9/02 -0700, you wrote: Sometimes I like to get really wasted on a Friday night, too. Thanks for sharing. Jim - Original Message - From: Douglas Brown [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: form troubles

2002-02-09 Thread Brian Scandale
Critter, Both Netscape and IE (windows versions) do NOT submit a 'form.submit=' element when clicking on the select box and having the onclickthis.form.submit submit the form. That's way cool because multiple Submit buttons can be trapped for which of several in the form were clicked to

Re: form troubles

2002-02-09 Thread Brian Scandale
- Original Message - From: Brian Scandale [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, February 09, 2002 3:57 AM Subject: form troubles Nothing is selected when this form loads until the user clicks inside theselect box. Then the form autosubmits via the onclic= Problem

Re: looping inside cfquery - brain on vacation

2002-02-06 Thread Brian Scandale
Maybe this? Loop around the cfquery cfloop query=theQuery cfquery name=blah datasource=blah INSERT INTO Table (Field) VALUES ('#theQuery.FieldValue#') /cfquery /cfloop At 05:15 PM 2/6/02 -0800, you wrote: dang tried the semi-colon already with no luck...thought

IE 4.5 on a Mac trouble

2002-01-28 Thread Brian Scandale
I have a site that I just tested with a Mac OS 9 that fails under the Mac but works under Netscape and IE 5.5 on an NT. The Details: There is a form that auto submits when an item in a select box is chosen. It then redisplays the Select box with details about the chosen item displayed below.

Re: Verify form post was from my server.

2002-01-25 Thread Brian Scandale
This is a very important question in my opinion... and I have been scrounging the net looking for a solution I can implement. I would certainly appreciate someone throwing a light switch so I can see the solution more clearly. As Dave clearly points out... we can NOT use the cgi.http.referrer

question a SQL guru

2002-01-21 Thread Brian Scandale
Is the INTERVAL data type a standard SQL data type? ie: is it found on most SQL implementations? I'm processing lots of date/time data I want to keep the database definition generic so I can port it anywhere... anytime. thankU

cfif contains #variable# failure?

2002-01-15 Thread Brian Scandale
This tag does not seem to work like I would expect. Can anyone shed some light? Very little in the docs about this. I quote the only reference... CONTAINS determines whether the value on the left is contained in the value on the right. Returns true if it is. cfif REWORK CONTAINS

RE: cfif contains #variable# failure?

2002-01-15 Thread Brian Scandale
Sorry, Figured it out... cfif REWORK LOOP CONTAINS Client.TravType is the correct syntax... sheepish_grin Brian This tag does not seem to work like I would expect. Can anyone shed some light? Very little in the docs about this. I quote the only reference...

RE: cfif contains #variable# failure? -- Answer

2002-01-15 Thread Brian Scandale
you're looking for the word 'Rework' in Client.TravType, which seems to be what you're doing). Dirk -Original Message- From: Brian Scandale [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, January 15, 2002 12:59 PM To: CF-Talk Subject: cfif contains #variable# failure? This tag does

Re: Limits to textarea?

2002-01-14 Thread Brian Scandale
More investigation has me thinking it's related to my ODBC driver for postgreSQL because my CFAdmin settings allow for long text buffer size of 65,000. Any thoughts? At 11:48 PM 1/13/02 -0800, you wrote: Anyone know off hand what the limits are to a textarea are? I just tested and found 8194

RE: Limits to textarea?

2002-01-14 Thread Brian Scandale
on the size of a single record in MS SQL. Russel -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Monday, January 14, 2002 1:49 AM To: CF-Talk Subject: Limits to textarea? Anyone know off hand what the limits are to a textarea are? I just tested and found 8194

Limits to textarea?

2002-01-13 Thread Brian Scandale
Anyone know off hand what the limits are to a textarea are? I just tested and found 8194 characters maximum with the extra being truncated. But... that was only one config in one browser etc... thanks, Brian __ Why Share?

<    1   2   3