Re: Form Processing Page

2001-12-20 Thread [EMAIL PROTECTED]
I'm pretty new to CF, but can't you use cfflush to output bits of html before and during the processing? chris on 12/20/01 7:54 AM, Alex at [EMAIL PROTECTED] wrote: put it in a frame. have the top say waiting or background color change or image ; have the bottom process your form. In your

RE: Quick Question

2001-12-20 Thread Will Swain
800 x 600 still. -Original Message- From: ehoma [mailto:[EMAIL PROTECTED]] Sent: 19 December 2001 21:44 To: CF-Talk Subject: Quick Question I hope that you'll permit me to ask a non cf question here. It is the only list that I subscribe to and I know that all of the top web developers

RE: Text documents - funny characters

2001-12-20 Thread Sicular, Alexander
in windows new lines are CRLF (carriage return line feed) so you should do: cfset body = ReplaceNoCase(body,nbsp;,#chr(13)##chr(10)#,ALL) check this: http://www.neurophys.wisc.edu/www/comp/docs/ascii.html good luck, Alexander Sicular Chief Technology Architect Neurological Institute of New

RE: Quick Question

2001-12-20 Thread Paris Lundis
your boss is a gadget idiot time for him to join everyone else out here in sufferville... 800x600 is fine... be sure to cut the thing down to accommodate gutters.. I mean borders :) so like 760 x 540 is suitable as far as that also goes, I like the people who don't use fixed sizing and

Polling / Voting

2001-12-20 Thread Michael B Barnum
This is a multi-part message in MIME format. --=_NextPart_000_0001_01C18927.D9A3E010 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Can someone either suggest, or point me in the right direction for simple voting/polling methods and or custom tags? I

RE: Finding an a specific item in array

2001-12-20 Thread Raymond Camden
Well, unfortunately, it looks like your array isn't an array of simple values, but an array of structures. If your array was all simple values, and you were 100% sure that the values would not contain a common delimiter, then you could simply do: cfif not listFind(arrayToList(thearray),newID)

RE: Finding an a specific item in array

2001-12-20 Thread Raymond Camden
Oh, I forgot to say... so, I mention that fact that you can't use arrayToList unless you are sure there are no commas in the data. (Or, if you sure there is no X, where X is a custom delimiter.) If you can't be sure of that, you must walk through the array. I wrote a UDF that will do this. /**

RE:Best practises for UDFs

2001-12-20 Thread Kola Oyedeji
Ray Or anyone else are there any resources on best practises/ performance issues for udfs? Thanks in advance Kola Kola Oyedeji |Web Developer |ekeda elthorne gate |64 high street |pinner |middx |ha55qa t +44(208)429 7333 f +44(208)429 7339 |www.ekeda.co.uk

Session timeout

2001-12-20 Thread Kay Smoljak
Hi all, I was wondering, what is the best way to catch session time-out error messages from showing up? I have an app with a 2 hour session time out - it's not secured in any way, it's just an ordering process where users have to fill out a couple of quite large forms. If the user is idle for

RE: Best practises for UDFs

2001-12-20 Thread Raymond Camden
I don't know of any articles (I need to write one for Allaire.com I think ;), but, here are a few basics: 1) Always use VAR for local variables. Be careful of loop iterators. I see many submissions to cflib.org where people forget to var declare these variables. Here is an example with this

Re: CF50 Server CF45 Server on same machine?

2001-12-20 Thread Chris Norloff
I thought only one copy of ColdFusion could run on one machine. Do you kno w if I can run two copies of the same version of CF, if both have their own web servers? I guess they'd have to use different ports, too. Chris Norloff -- Original Message --

Re: Session timeout

2001-12-20 Thread Chris Norloff
Do an isDefined check on a session var at the top of each page (in Applicat ion.cfm is easy). If it's not defined then it's probably because it's time d out, so then send the user to an alert page. Chris Norloff -- Original Message -- from: Kay Smoljak

Three Selects Related :: Multiple Fields?

2001-12-20 Thread Paul Ihrig
ok, i have the tag below but on display2=Profile_Name254 i want to show two outputs display2=Profile_Name254 Profile_Code254 but when i do i get this error Loop error The group Profile_Name254, Profile_Code254 does not specify a column of the query The error occurred while processing an

Re: CF and Time

2001-12-20 Thread Tyler Silcox
So...in the real world, where are we supposed to use timestamp. I always use datetime value and duration (which took me awhile to get to, but was well, well worth it) and either set my time part to 0:00 or leave it be for a distinct date/time combination in the great time continuum (?)-

RE: PLEASE HELP - I keep getting CFGrid Error Now

2001-12-20 Thread Larry Juncker
Now I get in the status bar: load: class allaire.controls2.CFGridApplet.class not found I spent all day yesterday on Allaires site and went dizzy trying to get t his figured out. It would be nice if someone could give an EXPLICIT description of what people are to do to get this working with CF

RE: Best practises for UDFs

2001-12-20 Thread Kola Oyedeji
Ray Thanks for the tips Kola Oyedeji |Web Developer |ekeda elthorne gate |64 high street |pinner |middx |ha55qa t +44(208)429 7333 f +44(208)429 7339 |www.ekeda.co.uk -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: 20 December 2001 14:20 To: CF-Talk

Re: CF and Time

2001-12-20 Thread Jerry Johnson
I was taught that timestamp was really more for use in a replication scheme/environment, to know which records from here need to be pushed there, and which records there need to be pushed here. [EMAIL PROTECTED] 12/20/01 09:37AM So...in the real world, where are we supposed to use

ORDER BY (SQL Server)

2001-12-20 Thread James Taavon
I have noticed when using an ORDER BY clause that my list sorts on first digit of a number and not the whole number. Does the data type definition in my database have any impact on the sort? Sorts like this right now:1, 10, 2, 20, 3, 30 instead of: 1,2,3,10,20,30

RE: Three Selects Related :: Multiple Fields?

2001-12-20 Thread James Taavon
Let me see, you want to display to separate values in Display2? Hmm, I am not sure that can be done given the current specs of the tag. You can select multiple values by choosing multiple=yes in your custom tag defintion. Is that what you are trying to do? -Original Message- From: Paul

RE: ORDER BY (SQL Server)

2001-12-20 Thread Adkins, Randy
Change the field type of the field to integer Then your sort will work fine. Right now I am Sure it is text or varchar thus the sorting you Indicated is correct for varchar or text. -Original Message- From: James Taavon [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 9:35

RE: ORDER BY (SQL Server)

2001-12-20 Thread C. Hatton Humphrey
That is because your data type is set to a character type... use cast to change it... select cName, cSSN, cZipCode, CAST(Left(cZipCode, 5) AS INT) from Informaiton order by CAST(Left(cZipCode, 5) AS INT) HTH C. Hatton Humphrey, Developer Fisher, Towne Associates 716-839-2141 x336 [EMAIL

RE: Three Selects Related :: Multiple Fields?

2001-12-20 Thread Paul Ihrig
no. i am trying to display: display2=#rs_Select_Project_Type.Profile_Name254# #rs_Select_Project_Type.Profile_Code254# instead of just: display2=Profile_Name254 so the output would be: Profile_Name254 Profile_Code254 Airports; Terminals Hangars; Freight Handling 0006 SF Railroad; Rapid Transit

Re: ORDER BY (SQL Server)

2001-12-20 Thread Stephen Moretti
James, Looks like your data type is text, in which case the order you have is correct. Changing the data type to numeric will order them in the correct numeric order. Regards Stephen - Original Message - From: James Taavon [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

RE: Three Selects Related :: Multiple Fields?

2001-12-20 Thread Judith Taylor
Paul, You need to do the concatenation in your SELECT statement of your query: SELECT Profile_Name254 + ' ' + Profile_Code254 AS FullProfile FROM rs_Select_Project_Type ... Then use DISPLAY2=FullProfile in the tag. HTH, Judi Paul Ihrig put into words: no. i am trying to display:

RE: PLEASE HELP - I keep getting CFGrid Error Now

2001-12-20 Thread Benjamin S. Rogers
I believe I received this error when first trying to view the Allaire Java applets with the Microsoft JVM installed. The Allaire Java applets were written for a newer version of Java than the Microsoft JVM supports. Since Microsoft has discontinued development on the JVM, you'll need to download

RE: ORDER BY (SQL Server)

2001-12-20 Thread James Taavon
I tried that and got an error, ODBC Error Code = 37000 (Syntax error or access violation) [Microsoft][ODBC SQL Server Driver][SQL Server]Error converting data type varchar to numeric. -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20,

RE: PLEASE HELP - I keep getting CFGrid Error Now

2001-12-20 Thread Larry Juncker
Ben the code below is what I get form my JavaConsole when I attempt to ru n one of my CF Script Java(TM) Plug-in: Version 1.3.1_01 Using JRE version 1.3.1_01 Java HotSpot(TM) Client VM Proxy Configuration: no proxy c: clear console

RE: ORDER BY (SQL Server) SOLVED!!

2001-12-20 Thread James Taavon
Yes, that works. Thanks! -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 9:55 AM To: CF-Talk Subject: RE: ORDER BY (SQL Server) That is because your data type is set to a character type... use cast to change it... select cName,

RE: PLEASE HELP - I keep getting CFGrid Error Now

2001-12-20 Thread Dave Watts
Now I get in the status bar: load: class allaire.controls2.CFGridApplet.class not found I spent all day yesterday on Allaires site and went dizzy trying to get this figured out. Are you able to get to the URL http://www.yoursite.com/CFIDE/classes/;? If not, you need to make sure that

Re: Report Utilities

2001-12-20 Thread Dimo Michailov
I second that, I think that FDF is a great (and relatively easy/inexpensive) way to provide great looking reports (provided you have a static frame and only the data changes). I am using FDFs to create accounting reports where I have a pre-generated report and I just fill in the item

OT - Macromedia partner site?

2001-12-20 Thread Ian Lurie
Has anyone been on the Macromedia Partner site today? www.macromedia.com/partners Is it just me, or is nothing working? I can't search for partners, update my app, etc... Ian Portent Interactive Using Process, Design and Content to create great web sites since 1995 Consulting, design,

RE: PLEASE HELP - I keep getting CFGrid Error Now

2001-12-20 Thread Larry Juncker
Thank You Dave I was placing my CFIDE under the root of the wrong website. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 9:29 AM To: CF-Talk Subject: RE: PLEASE HELP - I keep getting CFGrid Error Now Now I get in the status bar:

Re: VNC vs PC Anywhere

2001-12-20 Thread BILLY CRAVENS
Or you could get Windows XP Professional (cheaper than 2K Server) --- Billy Cravens - Original Message - From: David Brown [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, December 19, 2001 6:14 PM Subject: Re: VNC vs PC Anywhere Thank you, Yes I have installed the

RE: Three Selects Related :: Multiple Fields?

2001-12-20 Thread Paul Ihrig
Thanks Judi worked like a charm appreciate it. -paul __ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup

javascript escape sequence problem

2001-12-20 Thread Gilbert Midonnet
I have a javascript that I'm trying to embed some CF into its an if-else if a { cellStart + ahrefStart + 'summary' + getYear + '_' + getMonth + '_' + ... } I want to add a piece of code [see below] var encodeStart =

Re: javascript escape sequence problem

2001-12-20 Thread BILLY CRAVENS
Your double quotes inside of your pound signs should not make a difference if they're part of a function. Is the JavaScript nested inside of a CFOUTPUT? --- Billy Cravens - Original Message - From: Gilbert Midonnet [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday,

cfhhttp

2001-12-20 Thread Kris Pilles
Is there a limit to the size or amount of records that a txt file can have when using cfhttp? Kris Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C Phone: 631-549-4900 x 267 E-mail: [EMAIL PROTECTED]

RE: Allaire Partner upgrades...

2001-12-20 Thread Aaron Rouse
At least you got a link, we have recieved nothing. We had to basically fight to get the Windows version of CF5 Server, did they even ship out other versions of CF5 to partners? Personally I think MM could care less about the Allaire Partners, honestly see no point in going to whatever that new

RE: Allaire Partner upgrades...

2001-12-20 Thread C. Hatton Humphrey
We received our upgrade copy of CF 5 Server with no prodding on our side. Hatton -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 9:23 AM To: CF-Talk Subject: RE: Allaire Partner upgrades... At least you got a link, we have

RE: PLEASE HELP - I keep getting CFGrid Error Now

2001-12-20 Thread Benjamin S. Rogers
I don't know what to tell you. Even after installing the most recent Sun JRE on my system, Internet Explorer was still using the Microsoft JVM. Based on a suggestion in the Allaire forums, I took the steps mentioned below. They solved my problem. By the way, the directories that I renamed were

RE: Allaire Partner upgrades...

2001-12-20 Thread Aaron Rouse
Was it just for Windows or did you get the Linux version as well? We recieved an email saying they were bing chipped out, it was a general email to all partners. Months later, still no packages and after a couple of emails(prodding) we finally got a upgrade copy of CF 5 Server for windows,

RE: RESOLVED - I keep getting CFGrid Error Now

2001-12-20 Thread Larry Juncker
Thanks Ben and to ALL who helped Your suggestion and that of Dave Watts helped me get these all working. Thanks Again to All -Original Message- From: Benjamin S. Rogers [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 19, 2001 10:05 PM To: CF-Talk Subject: RE: PLEASE HELP - I keep

RE: javascript escape sequence problem

2001-12-20 Thread Gilbert Midonnet
yes, the js is inside of a cfoutput -- and no, the double quotes should not make a difference. -Original Message- From: BILLY CRAVENS [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 10:52 AM To: CF-Talk Subject: Re: javascript escape sequence problem Your double

Re: javascript escape sequence problem

2001-12-20 Thread Don Vawter
If I read it correctly the only thing you are asking cf to do is urlencode a string. Why not just use the javascript function escape which is equivalent? - Original Message - From: Gilbert Midonnet [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, December 20, 2001 9:21 AM

RE: javascript escape sequence problem

2001-12-20 Thread Gilbert Midonnet
I'm going to try that now. thx Just looked it up in the rhino book -- looks like it might do the trick. -- glm -Original Message- From: Don Vawter [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 11:36 AM To: CF-Talk Subject: Re: javascript escape sequence problem If I

Session variables on clustered servers?

2001-12-20 Thread Shawn Grover
I know Sessions variables can span a cluster, but am not sure of the details/gotchas. My experience with clusters is non-existent, but it looks like I'm going to be getting a crash course soon. So, I need to know some details for ensuring my sites work well over a cluster. I'm assuming the

RE: Text documents - funny characters

2001-12-20 Thread Andre Turrettini
Kay, You may be creating a false control charachter. On a pc, return breaks are #CHR(10)##CHR(13)#, not just #CHR(13)#. DRE -Original Message- From: Kay Smoljak [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 19, 2001 11:47 PM To: CF-Talk Subject: Text documents - funny characters

RE: Text documents - funny characters

2001-12-20 Thread Jerry Johnson
isn't it CRLF, or #CHR(13)##CHR(10)#? Jerry Johnson [EMAIL PROTECTED] 12/20/01 11:52AM Kay, You may be creating a false control charachter. On a pc, return breaks are #CHR(10)##CHR(13)#, not just #CHR(13)#. DRE -Original Message- From: Kay Smoljak [mailto:[EMAIL PROTECTED]] Sent:

Re: Text documents - funny characters

2001-12-20 Thread Howie Hamlin
Yes. #13#13 is not standard... Howie - Original Message - From: Jerry Johnson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, December 20, 2001 12:14 PM Subject: RE: Text documents - funny characters isn't it CRLF, or #CHR(13)##CHR(10)#? Jerry Johnson [EMAIL

Telephone application

2001-12-20 Thread Melissa Fraher
Is anyone familiar with a corporate directory application that is written in Cold Fusion? We have found a very sophisticated one written in ASP but are looking for a Cold Fusion solution. Thanks. Melissa __ Dedicated Windows

RE: Session variables on clustered servers?

2001-12-20 Thread Dave Watts
I know Sessions variables can span a cluster, but am not sure of the details/gotchas. That's incorrect. In CF 5, Session variables are stored within the memory of an individual server, and can't span a cluster. My experience with clusters is non-existent, but it looks like I'm going to be

Re: Text documents - funny characters

2001-12-20 Thread Howie Hamlin
oops - I meant #10#13 is not standarrd... Howie - Original Message - From: Howie Hamlin [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, December 20, 2001 12:06 PM Subject: Re: Text documents - funny characters Yes. #13#13 is not standard... Howie - Original

RE: Session variables on clustered servers?

2001-12-20 Thread Herbener, Martin - School Information Technology
Session variables CANNOT span servers. CF 4.5 clustercats can do sticky sessions, which means that the first server the user hits is the one they use for the duration of their visit (I'm not sure if this is done via cookie or URL), and therefore you can use session variables since the user

RE: Telephone application

2001-12-20 Thread Dharmesh Goel
There is one example app bundled in with CF Server called 'New Line Employee Management' http://127.0.0.1/cfdocs/exampleapps/employee/index.cfm I migrated it to SQL and added features and more admin modules. I am sure there are more apps available on Allaire's developer exchange site.

RE: Allaire Partner upgrades...

2001-12-20 Thread C. Hatton Humphrey
It was an upgrade for Windows. Hatton -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 9:36 AM To: CF-Talk Subject: RE: Allaire Partner upgrades... Was it just for Windows or did you get the Linux version as well? We recieved

RE: Exporting data to Excel

2001-12-20 Thread Aaron Rouse
I take it this XML file into Excel is something only Office XP can do over 97 and 2k? Or is there some trick to get it to work that I am missing? This is what I tried: cfquery name=test datasource=coilsafe SELECT A.ID, A.FRM, A.QUESTION FROM FRMQUESTIONS A GROUP BY

RE: Allaire Partner upgrades...

2001-12-20 Thread Aaron Rouse
Should the partners have not also got a Linux version? When we first became a Partner we got all of the Allaire products for all of the different OS's. Snipe - CF_BotMaster Network=EFNet Channel=ColdFusion On Thu, 20 Dec 2001, C. Hatton Humphrey wrote: It was an upgrade for Windows.

RE: Allaire Partner upgrades...

2001-12-20 Thread C. Hatton Humphrey
I don't honestly know... the company that I work for has had a partnership for a very long time... longer than I've worked here. We don't run Linux machines, so to be honest it doesn't matter in our situation. Hatton -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED]]

RE: Allaire Partner upgrades...

2001-12-20 Thread Shawn Grover
I'm not a partner, but I think I remember something about a Linux version of CF5 not being available when it was first shipped. The Linux version was released a short time later... Of course, I could be way off on this... trying to remember back 6 months is always a crap shoot for me. Shawn

Disable form field based on select box

2001-12-20 Thread Paul Ihrig
hello all! i have a select box called select name=Contract_Type i would like to Disable a text field called input type=text name=Contract_Amount value=cfoutput#DollarFormat(RS_Update_PG2.Contract_Amount)#/cfoutput if the selecton in the select box IS option value=Open Hourly but leave the text

Re: cfhhttp

2001-12-20 Thread Jim McAtee
There's definitely a 'practical' limit, since cfhttp (to the best of my knowledge), like a cffile read, works within RAM. It's not difficult to totally swamp, or even crash a server using either tag if the file is big enough. Generally, it's in the megabytes. Depending on the server and the

RE: Disable form field based on select box

2001-12-20 Thread Paul Ihrig
i was able to do this onChange=MM_changeProp('Contract_Amount','','disabled','INPUT/TEXT') but not sure how to make it conditional on the cfif. -paul -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 1:27 PM To: CF-Talk Subject: Disable

RE: Disable form field based on select box

2001-12-20 Thread Bryan Love
You'll need this JS function at the top of your page... function txtDisable( theForm ){ cBox = theForm.Contract_Type; if( cBox.options[cBox.selectedIndex].value == Open Hourly ) theForm.Contract_Amount.disabled = true; else

Re: Stressing SQL server

2001-12-20 Thread Neil H.
I can't find anything that works. I don't even need something specific for SQL. I just need a CPU / Memory basher? Any ideas? Thanks, Neil - Original Message - From: Neil H. [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 18, 2001 10:25 PM Subject: Re:

RE: Disable form field based on select box

2001-12-20 Thread Guy McDowell
Also, check the spelling when you do this. In your initial efforts you had disabled spelled 'diasabled'. Happens to me more than I care to admit. ;-) Guy J. McDowell [EMAIL PROTECTED] http://www.guymcdowell.com From: Bryan Love [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk

SQL Question

2001-12-20 Thread Gonzo Rock
Given 3 tables: Table Operations(Op) Op_ID, Op_Name,... and Table TravelerHEADER(TravH) TravH_ID, TravName, Part_ID,... and Table TravelerDetail(TravD) TravD_ID, Op_ID, TravOrder,... How can I retrieve the OP RecordSet associated with the subset of TravD records given a single TravH_ID

RE: cfhhttp

2001-12-20 Thread Kris Pilles
Ive been playing with the cfhttp for awhiel and it seems that I cannot process a text fiel with more then 225 lines in it? Has anyone else experienced this??? I guess it doesn't mater how many txt files I have I would lust prefer to just do it in one file??? Kris Pilles Website Manager

Re: cfhhttp

2001-12-20 Thread Jerry Johnson
Also be aware of the load time - as a timeout will kill the load. Make sure you allow plenty of time in the requestTimeout. Jerry Johnson [EMAIL PROTECTED] 12/20/01 01:31PM There's definitely a 'practical' limit, since cfhttp (to the best of my knowledge), like a cffile read, works within

single threaded sessions time out.

2001-12-20 Thread Mark W. Breneman
Riddle me this... Riddle me that Why do I get a single threaded sessions time out error from time to time? And then immediately a RequestTimeout from the same user? We have single threaded sessions enabled in CF admin. All of our new code this correctly locked, but we still have some old

RE: cfhhttp

2001-12-20 Thread Larry Juncker
Be sure if it is a large file that you include ?RequestTimeout=500 or more in order to not let CF time you out while downloading the file. -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 1:00 PM To: CF-Talk Subject: RE: cfhhttp Ive

Reading header variables in Cold Fusion

2001-12-20 Thread Alan Walker
Hello All, I am developing an application that requires variables passed from an existing system. The existing system is behind a firewall so I am unable to write an LDAP query to get to the information. The have informed me that they can send the information needed via a set of header

RE: cfhhttp

2001-12-20 Thread Kris Pilles
heres the link to my entire text file: http://webmaster.wsboces.org/test.cfm This doesn't work. Now, if I reduce the number of links to 225 it will work? I checker the 226th line for anything that would cause it to error and i also moved the lines around and it still appears to always break

Re: Reading header variables in Cold Fusion

2001-12-20 Thread BILLY CRAVENS
Look at this function: GetHttpRequestData() ---Billy Cravens - Original Message - From: Alan Walker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, December 20, 2001 1:10 PM Subject: Reading header variables in Cold Fusion Hello All, I am developing an application

Re: Disable form field based on select box

2001-12-20 Thread BILLY CRAVENS
In some browsers, you can set a text field to readonly. However, for a version that is cross-browser, I would look at hiding/showing layers based on what the value of the select box. --- Billy Cravens - Original Message - From: Paul Ihrig [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

RE: Reading header variables in Cold Fusion

2001-12-20 Thread Joseph DeVore
If you want to read the raw headers, you can use cfhttp. If your header is a simple value you can output it like so: #cfhttp.responseHeader[your_header_key]# Otherwise loop over the key array: cfset key=cfhttp.responseHeader[your_header_key] cfloop from=1 to=#ArrayLen(key)# index=x cfoutput

RE: cfhhttp

2001-12-20 Thread Joseph DeVore
What does your CFHTTP code look like? What does the file that you are fetching look like? -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 11:17 AM To: CF-Talk Subject: RE: cfhhttp heres the link to my entire text file:

Re: Reading header variables in Cold Fusion

2001-12-20 Thread BILLY CRAVENS
Nevermind - I'm wrong. Look at Joseph DeVore's post. :-) --- Billy Cravens - Original Message - From: BILLY CRAVENS [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, December 20, 2001 1:21 PM Subject: Re: Reading header variables in Cold Fusion Look at this function:

Re: Disable form field based on select box

2001-12-20 Thread Sam Farmer
Another solution is to use a combination of onFocus=this.blur() or take the focus elsewhere with a function. Will be cross browser more than the nicer, easier disabled feature (IE only?). Thanks, Sam Sam Farmer - Senior Developer Certified Advanced ColdFusion 5 Developer [EMAIL PROTECTED]

Re: single threaded sessions time out.

2001-12-20 Thread Chris Norloff
These should help: ColdFusion Server 4.5 and higher: Unable to acquire lock for single thread ed sessions within timeout period Error Occurs http://allaire.com/Handlers/index.cfm?ID=22317Method=Full ColdFusion Timeouts and Unresponsive Requests

Studio subscr upgrade MIA. MACR?

2001-12-20 Thread Matt Robertson
Does anyone know who I can contact at Macromedia to ask about the status of my Studio subscription upgrade to 5.0? I still haven't heard or seen anything. Thx, --Matt Robertson-- MSB Designs, Inc. http://mysecretbase.com __

Re: SQL Question

2001-12-20 Thread corrigan
It looks like you need to add TravH_ID to the TravD table. That way you have the association between the header and its details: TravD_IDTravH_ID 11 21 31 etc. Then you can get it all with TravH_ID to include OP_ID HTH Michael

OT: Oracle OCP DBA study guides

2001-12-20 Thread Kris Pilles
Any oracle people out there that can suggest a good source for studying for my sql/pl-sql exam? brain dumps etc... __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant

cfsilent

2001-12-20 Thread David Schmidt
Has anyone noticed any ill effects from using cfsilent? speed reduction? Thanks, __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup

OT: Visual Source Safe

2001-12-20 Thread David Brown
We currently use VSS for source control and it works well with CF. But we also now need to include a mac user into the source control. Is there a client for VSS for mac's? __ Why Share? Dedicated Win 2000 Server · PIII 800 /

Inserting a Textfile into a DB

2001-12-20 Thread Kris Pilles
Can anyone tell me how to insert a text file into a memo field in an access db? __ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup

RE: cfhhttp

2001-12-20 Thread Jerry Johnson
To answer your question about the 225 line limit, I have some legacy code reading in RTF files, some of which are 800K+, and it is handling it fine. Slow as heck, though. like 50 seconds or so. I am replaceing it with Perl as I go. Jerry Johnson [EMAIL PROTECTED] 12/20/01 02:17PM heres

RE: Inserting a Textfile into a DB

2001-12-20 Thread Adkins, Randy
Use CFFILE to read the file into a variable And use the QUERY INSERT function to put the Contents of the variable into the memo field. -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 2:59 PM To: CF-Talk Subject: Inserting a Textfile

Re: cfsilent

2001-12-20 Thread Jeffry Houser
According to common knowledge, It is believed to be a fairly inefficient tag. However, common knowledge is not always correct and I cannot speak from experience. As a point of reference, it is also 'common knowledge' that using cfsetting (with enableCfOutputOnly = yes) to suppress

Re: ORDER BY (SQL Server)

2001-12-20 Thread Jacob
Use decimal or numeric for the data type. At 09:34 AM 12/20/2001 -0500, you wrote: I have noticed when using an ORDER BY clause that my list sorts on first digit of a number and not the whole number. Does the data type definition in my database have any impact on the sort? Sorts like this

Ad Servers Down

2001-12-20 Thread Dave Hannum
Has anybody noticed that doubleclick and other ad servers are down today? Network problem or is there something somebody has heard? Or is it a content provider like Akami that is down, because I've noticed that Yahoo, CNN and others have images that are missing. Dave

RE: Visual Source Safe

2001-12-20 Thread Zac Belado
Is there a client for VSS for mac's? Yup. I beleive that its only version 5 so you need to create a version 5 DB to accommodate that user http://www.metrowerks.com/desktop/MWVSS/ __ Get Your Own Dedicated Windows 2000 Server

OT: domain registration problems

2001-12-20 Thread Kris Pilles
Heres my situation: I just got handed a new website to manage. S... I want to transfer the site to our saervers so I looked up the whois on the name and it came back with a company that is no longer in operation. what I don't know how to do is to change the name servers of this domain

RE: domain registration problems

2001-12-20 Thread Dan Phillips
Contact the registrar and find out if they can do a fax authorization. This may take just a little longer but it should work. Dan Phillips CFXHosting.com -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 3:14 PM To: CF-Talk Subject: OT:

RE: domain registration problems

2001-12-20 Thread Kris Pilles
The registrar is the defunct party. Kris Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C Phone: 631-549-4900 x 267 E-mail: [EMAIL PROTECTED] -Original Message- From: Dan Phillips [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 3:18 PM To: CF-Talk

Returning IDs off a query...

2001-12-20 Thread Tyler Silcox
I've been saving this question for a rainy day, and while it's not rainy, it could be getting a little stormy...what is the best way to return a freshly submitted ID from a cfquery? Should I use a getMax SQL function with cftransaction tag pair around the insert and select queries or should I

Re: Allaire Partner upgrades...

2001-12-20 Thread Bryan Stevenson
yup...we got it too..no problem...but I would love to get Studio 5 ;-) Bryan Stevenson VP Director of E-Commerce Development Electric Edge Systems Group Inc. p. 250.920.8830 e. [EMAIL PROTECTED] - Allaire Alliance Partner www.allaire.com

RE: domain registration problems

2001-12-20 Thread Dan Phillips
Hrmmm...that is tricky then. I would contact Netsol (internic) and see if they could help you out a bit. If I understand correctly, they do have ultimate control over domains even if they did not sell them to you. Someone chime in if I'm wrong. Dan -Original Message- From: Kris

RE: domain registration problems

2001-12-20 Thread Larry Juncker
If you go to Network Solutions, they have form letter info you can download and have the Owner of the domain name (your client) send in on their own letterhead with the Presidents signature and you can get this done. -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent:

Re: domain registration problems

2001-12-20 Thread Dave Hannum
Call the TLD Registrar (company the domain is registered with) and have t hem explain their policy in a case like this. They all have a procedure to handle this. Dave - Original Message - From: Kris Pilles [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, December 20,

Re: RE: domain registration problems

2001-12-20 Thread net_man
I think you are right, they are the domain police and if the registrar is no longer in business another registrar should have taken over their domains or they whould revert to Netsol. Thanks, /Robert [EMAIL PROTECTED] wrote: Hrmmm...that is tricky then. I would contact Netsol

  1   2   >