Visual Foxpro and network drives.

2000-08-31 Thread Jared Clinton
Hello cf-talk, Has anybody been able to connect a VFP database (free table or .dbc) to a network drive? It seems to be causing me problems, although I wouldn't be suprised if its something very simple. Jared Clinton. ObjectMastery.

RE: IE for Macs and Solaris

2000-08-31 Thread Rich Wild
IE5 for Mac also does not repost form variables when a page relying on a posted variable is refreshed. Immensely annoying - would love a workaround other than having to set a cookie containing the posted variabe just in case someone presses refresh and receives the CF error message detailing my

Re: Visual Foxpro and network drives.

2000-08-31 Thread JF
Yep, do it on a daily basis...some tips: -Make sure the CF service is running as a domain user with rights to the network share (not a System Account) -Use UNC mappings in the ODBC setup, or, login interactively as the CF service user, map a drive letter, then reference that drive That should

CFX_ODSWHOIS

2000-08-31 Thread Aidan Whitehall
We've installed and registered identical copies of CFX_ODSWHOIS (1.0) on two machines in our office. This template works fine on one of them: cfx_odswhois DOMAIN="netshopperuk.com" CFOUTPUT #ODSWHOIS_RESULT# /CFOUTPUT (ODSWHOIS_RESULT is "TAKEN"), but throws this error on the other machine

Re: CFX_ODSWHOIS

2000-08-31 Thread Adrian Cooper
- Original Message - From: "Aidan Whitehall" [EMAIL PROTECTED] Sent: 31 August 2000 10:14 By way of information - there are alot of whois servers out there now with all of the various registries, registrars etc. for domain names and IP blocks etc.. If you point your WHOIS queries at:

Large Query to web

2000-08-31 Thread Woodcock, Jonathan
Hi everybody, I am trying to present a very large chunk of data to users via a web page. The query takes 45 seconds to run (optimized) in the Query Analyzer and yields 100,000 records. Good 'ol CFOUTPUT will not work. IE chokes if there are more than 5,000 or so records. It takes so long for

Re: Newbie: Cookies Session Variables

2000-08-31 Thread James Taavon
Well, actually I guess it also involves sessions variables, something I have not used before. Any help would be appreciated. James Taavon wrote: Hello. I want users who have logged into my app to have their login saved so they do not have to re-login after coming back to the main screen

Re: Has the Apocalypse cometh? (Was RE: CF vs. ASP)

2000-08-31 Thread Jamie Keane
I am, well at least professionally. I fiddle with PHP as a hobby, and my job hasn't required me to switch over yet, so I guess I still qualify. -- Jamie Keane Programmer SolutionMasters, Inc. 9111 Monroe Rd., Suite 100 Charlotte, NC 28270 www.solutionmasters.com 704.563.5559 x 228 Voice

IIS Locking Files

2000-08-31 Thread David E. Crawford
A while back there was some discussion of a registry hack which would allow the disabling of the "lock" that IIS places on files during "read" operations. I understand that it may have a bearing on performance, however, I am in a situation where I am ftp'ng webcam images into a directory, which

Re: Rounding to two decimal places

2000-08-31 Thread David E. Crawford
try numberformat(mynumber","999.99") which will round properly based on "standard" rounding rules. DC - Original Message - From: "Kim Ahlbrandt" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 30, 2000 21:11 Subject: Rounding to two decimal places After doing some

RE: CFX_ODSWHOIS

2000-08-31 Thread Aidan Whitehall
If you point your WHOIS queries at: whois.geektools.com it will sequentially query either the appropriate whois server according to [snip] Thanks Adrian... I'll give that a go. -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions Services

Which one will take?

2000-08-31 Thread Hryckowiak, Miro
Hi all, I'm writing an app which should work on NT and in the FUTURE on UNIX platform also. Since I got no UNIX machine by me I can't check what happens when: - I got a custom tag called foo.cfm - I'm calling the tag like: cf_foo - I got two files (on UNIX): foo.cfm and foo.CFM Q: which one

Okay, this query should be simple...

2000-08-31 Thread Terri Stocke
Hey All, Maybe some fresh eyes can detect where I've messed up here. I'm building a search screen for users to search across multiple criteria. No matter what I do, I keep getting an Oracle error that the SQL command is not peroperly ended. Do I need to use a different wildcard? cfquery

Structures No? Cached Queries Yes?

2000-08-31 Thread paul smith
I see my earlier post was obscure to opaque. For the same results: Get data from a cached query: Average = 180ms Get data from a database stored in a Structure: Average = 227ms Structure takes 26% longer than a cached query to get the same data. This kind of makes sense, since with a

Re: Which one will take?

2000-08-31 Thread Chris Hayes
Does this work on NT? - Original Message - From: Hryckowiak, Miro [EMAIL PROTECTED] To: Cf-Talk (E-mail) [EMAIL PROTECTED] Sent: Thursday, August 31, 2000 2:01 PM Subject: Which one will take? Hi all, I'm writing an app which should work on NT and in the FUTURE on UNIX platform

Re: Okay, this query should be simple...

2000-08-31 Thread Chris Hayes
Stab in the dark... with a very inadequate stabbing utensil... Maybe ORACLE requires an end semi-colon. - Original Message - From: Terri Stocke [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 31, 2000 2:03 PM Subject: Okay, this query should be simple... Hey All,

Re: Which one will take?

2000-08-31 Thread Peter Theobald
Don't do that. No matter which one it takes, at some point a programmer will think it's the other one and it will cause no end of headaches. At 03:01 PM 8/31/00 +0200, Hryckowiak, Miro wrote: Hi all, I'm writing an app which should work on NT and in the FUTURE on UNIX platform also. Since I

getting data from queries as a structure/array

2000-08-31 Thread Paul Johnston
I have heard (somewhere and I can't remember where) that you can reference a query result as if it was a structure or an array or something. Can someone tell me if this is possible? I am assuming that the query is a structure of some sort. Paul

Re: CF Perf Mon

2000-08-31 Thread Howie Hamlin
This is a known bug and is fixed in the latest CF beta. Regards, Howie - Original Message - From: "Jake Hileman" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 30, 2000 11:22 PM Subject: CF Perf Mon I'm having some trouble getting PERF MON to recognize my CF Server

RE: Which one will take?

2000-08-31 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 No. It won't work on NT. NT is case preserving, but not case sensitive. foo.cfm foo.CFM are the same file on NT. And as another person said: DON'T EVEN THINK ABOUT DOING SOMETHING LIKE THIS! It's horrendous coding practice, and it WILL

Re: Okay, this query should be simple...

2000-08-31 Thread Terri Stocke
Thanks for your response, Chris :) Nope, semicolon wasn't the solution... Any other ideas out there? Original Message Follows From: "Chris Hayes" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Okay, this query should be simple... Date: Thu, 31 Aug 2000

Okay, this query should be simple...

2000-08-31 Thread Rice, David
Terri, It looks to me as if you have "sug_evaluators" (i.e., sug_evaluators.evaluator_id, sug_evaluators.evaluator_userid) as a table in your SELECT statement. However, it is not contained in the join in your FROM statement that I can see. Is this an oversight when emailing, or when writing the

Getting a value from a field

2000-08-31 Thread Ben Densmore
This is a multi-part message in MIME format. --=_NextPart_000_0044_01C0132D.F7ADEA40 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable can someone tell me if there is a way to get values out of a form, = similar to using form.fieldname? Ihave

RE: Okay, this query should be simple...

2000-08-31 Thread Stas Newdel
You have this in your FROM clause - web_profile.AT_users.userid It probably shouldn't - unless it's a table name, and then it shouldn't be in SELECT or WHERE. -Original Message- From: Terri Stocke [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 31, 2000 9:03 AM To: [EMAIL PROTECTED]

RE: Okay, this query should be simple...

2000-08-31 Thread Stewart McGowan
Terri, It actually looks fine to me, the wildcard, however you have a table sug_evaluators in the select statement and not in the from statement, also i'd use aliases for the table names to cut down the clutter, you've also joined on sug_suggestions.suggestion_id=sug_suggestions.suggestion_id

Re: getting data from queries as a structure/array

2000-08-31 Thread Avi Flax
You can reference a query this way: QueryName.ColumnName[RowNumber] I don't know if Query variables are a structure variant. Wouldn't surprise me. Hope this helps! Avi At 02:24 PM 8/31/2000 +0100, you wrote: I have heard (somewhere and I can't remember where) that you can reference a query

RE: Structures No? Cached Queries Yes?

2000-08-31 Thread Cameron Childress
I'd be interested in knowing what the code and data structure in your tests looked like... We are using structs a good deal in some apps, and I had been assuming it would be faster than a query. -Cameron Cameron Childress McRae Communications p. 770-460-7277 x.232 f.

RE: Okay, this query should be simple...

2000-08-31 Thread DeVoil, Nick
Terri, can we see the whole cfquery? Can't see anything wrong with what you posted. Any other ideas out there? ** Information in this email is confidential and may be privileged. It is intended for the addressee only. If you

RE: Okay, this query should be simple...

2000-08-31 Thread Cunningham David
Is it possible that any of those values would be NULL so you would end up with a statement like: sug_suggestions.suggestion_id= AND (to take your first where statement for ex.) This would cause the problem. David Cunningham -Original Message- From: Terri Stocke [mailto:[EMAIL

Re: Large Query to web

2000-08-31 Thread JustinMacCarthy
What is the purpose of showing 10 records. Is it to display and are you doing data Exchange? If exchange : Use sqlserver to write a comma delimited file using DTS and ftp it to the other server? ~Justin - Original Message - From: "Woodcock, Jonathan" [EMAIL PROTECTED] To: [EMAIL

Re: CF Perf Mon

2000-08-31 Thread Jake Hileman
Ahh, I see, any patches or anything of that sort? Where is the latest CF Beta? Jake - Original Message - From: "Howie Hamlin" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 31, 2000 9:27 AM Subject: Re: CF Perf Mon This is a known bug and is fixed in the latest CF

RE: Which one will take?

2000-08-31 Thread Hryckowiak, Miro
Folks, I'm not doing that. I'm just thinking which one will CF take in case both files will resides in the directory - ON UNIX... Miro. -Original Message- From: Zachary Bedell [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 31, 2000 3:28 PM To: '[EMAIL PROTECTED]' Subject: RE: Which

(OT) making fields readonly with JavaScript

2000-08-31 Thread Jamie Keane
Hi all, and I apologise for being off-topic, but this is driving me nuts! Is there a way to "disable" text field via JavaScript? I know of the READONLY attribute, and the client likes how that works, but in my research I was not able to come up with a way to access that attribute through JS.

RE: Okay, this query should be simple...

2000-08-31 Thread Andy Ewings
Terri I think that where you have listed the tables that you are using in the FROM bit you have put web_profile.AT_users.userid instead of web_profile.AT_users as it appears by the look of your where clause that web_profile.AT_users.userid is a field

Re: Anyone using Sun's Workshop5.0 ?

2000-08-31 Thread Larry W. Virden
From: "Conrad, Christopher" [EMAIL PROTECTED] To compile complex C++ tags with CF4.5 ?? Anyone here ? I've tried for quite a long time to just find out how to build any kind of tags for CF on Unix. To date, my requests for info from Allaire have been ignored and requests here and elsewhere

Re: Okay, this query should be simple...

2000-08-31 Thread JustinMacCarthy
Is this part right? FROMsug_suggestions, sug_more_suggestors, web_profile.AT_users.userid, sug_status_codes WHERE sug_suggestions.suggestion_id=sug_suggestions.suggestion_id AND should web_profile.AT_users.userid not be web_profile? ~Justin - Original Message - From: "Terri

OT: Javascript Question

2000-08-31 Thread Robert Everland
I can't remember where or the name of the javascript forum off of cf-talk but I figured I may as well as my question and then have someone tell me where to do. I have a form button that is an image. I put some javascript in there so that when I click on it, it changes the image. What I

RE: OT: Need help connecting company to internet

2000-08-31 Thread Al Musella, DPM
I have a small home office with 5 computers hooked up to a network. I have a cable modem ($29.95 / month) that goes into my file server which runs windows 2000. Windows 2000 has the software built in to allow connection sharing among the entire network. Took about 2 minutes to set up. The

Re: CF Perf Mon

2000-08-31 Thread Jake Hileman
Found the fix and anyone else who is having problems can download it here: http://www.allaire.com/Handlers/index.cfm?ID=15968Method=Full thanks Howie, I appreciate your help! Jake - Original Message - From: "Howie Hamlin" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August

RE: Rich Text Files (RTF) Creation and Manipulation

2000-08-31 Thread mherbene
It is a pain, but I've made this work; you can see samples and more discussion here: http://forums.allaire.com/devconf/Index.cfm?Message_ID=172003 I know of no tool that will make this easier. -Original Message- From: David E. Crawford [mailto:[EMAIL PROTECTED]] Sent: Thursday, August

Help

2000-08-31 Thread Alan Wolf
I have a form that is dynamically populated with user ID's via a cfquery. I then pass the user id to another form that inserts an inventory request into a table. I want to return to the inventory request page after the record has been inserted and once again use the same user id without going

RE: Web Database Solution

2000-08-31 Thread DeVoil, Nick
I have been thinking about developing a CF app that will let me work with my SQL Server via the web. But before I get into that I wanted to see if there was already a good one out there. I would like to have as much of the functionality as Enterprise Manager as I can. Anybody know of a

Re: Getting a value from a field

2000-08-31 Thread Gene Kraybill
On the form, you could name your products like this: Prod_001 Prod_002 etc. Then on the action page, use form.fieldnames and CFLOOP to loop through all the fields. If the field begins with Prod_, you would then do: Evaluate(thisfield) to determine whether the value is 0, and if not, you'd

Crystal Reports 8 and Cold Fusion: HELP!!!

2000-08-31 Thread Mike Deane
Anyone using Crystal Reports 8 and CF? Please help me. Thank you. /mdeane -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

RE: (OT) making fields readonly with JavaScript

2000-08-31 Thread Jason Powers
Jamie, Shouldn't it be possible for you to use the blur() method to force focus off of that text box? Like this: input type="text" onFocus="this.blur();" to take focus off of that field, or input type="text" onFocus="document.forms[0].someotherelement.focus()" to focus on another element,

RE: IIS Locking Files

2000-08-31 Thread Benjamin S. Rogers
I don't know of a registry setting to completly disable object caching from within IIS, but the following keys may be appropriate/useful. HKLM\System\CurrentControlSet\Services\InetInfo\Parameters\ObjectCacheTTL HKLM\System\CurrentControlSet\Services\InetInfo\Parameters\OpenFileInCache

RE: What I want in CF (was: Learning ASP)

2000-08-31 Thread Benjamin S. Rogers
XML parser. Enough to check well-formedness with the option to validate against a DTD. It doesn't have to "execute" the XML. If you are on NT, what about the XML Parser that comes with Internet Explorer? Many people have been using this successfully from within ColdFusion Apps. Benjamin S.

RE: Getting a value from a field

2000-08-31 Thread Rice, David
Ben, FORM.FIELDNAMES is a handy object sometimes. However, I find that occasionally I prefer to loop through my own list(s) to do some specific processing. The methodology I use follows (roughly, based upon the scant information you provided): 1. I would imagine that you already get the

RE: Okay, this query should be simple...

2000-08-31 Thread Terri Stocke
Okay, this revised query works. I have actually used web_profile.at_users in conjunction with my main table in the past, and those queries work fine. In this particular instance, I forgot to delete the actual column name after the table in my FROM clause (thanks, Stas!). I think that I will

UNC Path's for CFFILE Uploads

2000-08-31 Thread Jeremy Allen
CF Gives some rather ambigious errors when you try this. GRIPE REASON="AmbigiousError" The directory either does not exist or is not accessible by the ColdFusion service. /GRIPE Anyhow, has anyone done this, I have tried URLEncodedFormatting my path I have tinkered with permissions to ensure

RE: Okay, this query should be simple...

2000-08-31 Thread Terri Stocke
Okay, this revised query works. I have actually used web_profile.at_users in conjunction with my main table in the past, and those queries work fine. In this particular instance, I forgot to delete the actual column name after the table in my FROM clause (thanks, Stas!). I think that I will

RE: Javascript Question

2000-08-31 Thread Jason Powers
Wouldn't it be simple enough to make it a dummy link, check a your submitted flag, do the javascript for the image swap, set the submitted flag, and do a form.submit()? var subFlag=0; function submitter(){ if(subFlag==0){ imageswap(); subFlag=1;

RE: (OT) making fields readonly with JavaScript

2000-08-31 Thread DeVoil, Nick
I know of the READONLY attribute, and the client likes how that works, but in my research I was not able to come up with a way to access that attribute through JS. Any ideas? document.formname.fieldname.readOnly This only works on IE I think. For NN solution try

Re: Javascript Question

2000-08-31 Thread Jamie Keane
Here's what I'd do. Make the image an HREF pointing to "#", and calls a function when clicked. Like so: function doMyStuff() { document.image.src = "newimage.jpg"; document.form.submit(); } I think this will work. -- Jamie Keane Programmer SolutionMasters, Inc. 9111 Monroe Rd., Suite

RE: CFLOCK on Session Variables

2000-08-31 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Okay... Last time now... This is your server [holds up egg]. This is your server with out locking [*sizzle*]. Any questions? But seriously... Please allow me to clear up a couple of misconceptions in this post. Does a CFLOCK with

Re: (OT) making fields readonly with JavaScript

2000-08-31 Thread Ricq Pattay
I haven't tried this, and in fact I'm stealing this from the JS-Jive list: onFocus="this.blur()" in the input tag Ricq Pattay [EMAIL PROTECTED] Univ of Minnesota - Twin Cities College of Veterinary Medicine - Original Message - From: Jamie Keane [EMAIL

YAFLQ (Yet Another Fine Locking Question)

2000-08-31 Thread Ricq Pattay
If I have references to session variables that are nested, do I need to lock each reference separately or can I wrap the whole thing in one lock? e.g., cflock scope="session" timeout="30" type="exclusive" cfif #session.susertype# is not "admin" cfquery name="get_message"

RE: (OT) making fields readonly with JavaScript

2000-08-31 Thread Gary McNeel, Jr.
Just FYI. We did use Javascript to do this (similar to code below). It worked fine in IE 4+, intermittent problems in Netscape 4+. Also, we found that people would turn off Javascript (for whatever reason) and whamo, no go on keeping them out. So if you are counting on this for some security

RE: Regarding CF Forum2.0

2000-08-31 Thread John McKown
I have it running. What kind of errors are you getting? It never really ran well until we upsized it to SQL. John McKown, VP Business Services Delaware.Net, Inc. 30 Old Rudnick Lane, Suite 200 Dover, DE 19901 eMail: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] Phone: 302-736-5515 Fax:

RE: ColdFusion Verity versus Verity Verity

2000-08-31 Thread John McKown
It is not very clear on their site which product would work best with CF or SQL. Is it the Information Server? John McKown, VP Business Services Delaware.Net, Inc. 30 Old Rudnick Lane, Suite 200 Dover, DE 19901 eMail: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] Phone: 302-736-5515 Fax:

Re: YAFLQ (Yet Another Fine Locking Question)

2000-08-31 Thread Ricq Pattay
Sorry, that first lock should be type="readonly". cflock scope="session" timeout="30" type="exclusive" Ricq Pattay [EMAIL PROTECTED] Univ of Minnesota - Twin Cities College of Veterinary Medicine

RE: CF-Talk V1 #174

2000-08-31 Thread kwasi
1. What is a TID? 2. Mail takes too long to be sent using CFMAIL, any ideas as to solutions for this? 3. Do you know any alternatives to CFMAIL, that is able to send receipts to mail arriving, and mail being opened by recipients? Kwasi Date-Bah System Developer iMediapoint.com 1-7 Fulham High

RE: Structures No? Cached Queries Yes?

2000-08-31 Thread paul smith
I got the difference down to 15% by eliminating CFSETs in the Structure version. (Structure still slower.) Structure set a la the following: !--- Set Up Structure for YellowPage Headings --- CFQUERY NAME="GetYPs" DATASOURCE="#DSN#" USERNAME="#user#" PASSWORD="#pass#" SELECT Class_ID,

Structures, Arrays, Array of Structures

2000-08-31 Thread Robert Everland
Is there a way to add multiple records into a structure or do I have to make an array of strucutres. Right now I made an aray of strucutures but I want to make sure that is the most logical way to be doing it. Robert Everland III Web Developer Dixon Ticonderoga

RE: getting data from queries as a structure/array

2000-08-31 Thread Rick Osborne
Yep, this is pretty cool. You can say: CFSET foo=myQuery.UniqueID[3] As it seems, you will get the UniqueID field of the 3rd row of myQuery. You can therefore think of a query as a structure of arrays (it isn't, but that's how you can think of it if that helps you). A common mistake is to

RE: YAFLQ (Yet Another Fine Locking Question)

2000-08-31 Thread Jeremy Allen
You are doing an exclusive lock on those variables. No where are you setting any of those session variables so the exclusive lock is not needed. Just CFLOCK SCOPE="session" timeout="30" TYPE="ReadOnly" cfif #session.susertype# is not "admin" cfquery name="get_message" datasource=#variable.ds#

RE: Structures No? Cached Queries Yes?

2000-08-31 Thread Rick Osborne
I'm a little confused as to what you are doing here. Can you paste a short code snippet? I keep queries in structures in memory all the time and access is pretty much instantaneous, so I'm guessing that's not what you are doing? -Rick -Original Message- From: paul smith [mailto:[EMAIL

Can NOT get INSERT QUERY to work for the live of me!

2000-08-31 Thread Jeremy Toevs
I can not get my insert query to work, I get the following ERROR MESSAGE: *** Error Diagnostic Information ODBC Error Code = 22005 (Error in assignment) [Microsoft][ODBC Microsoft Access Driver] Data type mismatch in

Re: Structures No? Cached Queries Yes?

2000-08-31 Thread Andy Peterson
Hi, As an aside, I'd be curious to know how FindNoCase would affect processing time if you replaced "eq" and "is" with it in both examples, particularly whether it sped up the evaluation of the structure value more so than the query output value. -Andrew - Original Message - From: paul

Re: IIS Locking Files

2000-08-31 Thread Jim McAtee
Dave, You might also try a different approach to naming the uploaded files. If possible, have your webcam upload the images with a unique filename. For example, instead of uploading as "thispic.jpg", append a timestamp, as in "thispic1405.jpg". Your CF template that displays the image could do

can you store a structure in a client var?

2000-08-31 Thread Stas Newdel
I remember that you can't store a structure in either a session or a client var, could anybody please refresh my memory? Thank you -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

RE: Rounding to two decimal places

2000-08-31 Thread Rick Osborne
Try: CFSET TwoDecimals=Round(Float * 100) / 100 In case the math isn't intuitive: You take Float (=3.1415926). You multiply it by 100 (=314.15926). You round it off (=314). You then divide by 100 (=3.14). You can get any number of decimals using this. If you need it to be variable: CFSET

RE: Structures No? Cached Queries Yes?

2000-08-31 Thread Jeremy Allen
You mentioned eliminating CFSET's is that the actually initalization of the structures? its not going to be very fair to do a cached query just pulling data versus setting and pulling the data.. im assuming that is what you mean by eliminating cfsets in the structure version. Also I notice

Re: CF vs. ASP (was: What I want in CF (was: Learning ASP))

2000-08-31 Thread Chris Lott
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I like to think that CF is to ASP what VB is to C Boy, that is both a strong statement and an amazing example of damning with faint praise :) I don't know that much about ASP, not having had any chance to use it, but I always thought it was

RE: CF-Talk V1 #174

2000-08-31 Thread kwasi
Two questions to ask: 1. I have noticed that when we use CFMAIL, there is a timelag of about a minute in the time that the mail is sent to the mail queue and that it leaves the mail queue. Any ideas as to how to fix this? 2. Do you know of a better alternative to CFMAIL? 3. What is a TID?

RE: YAFLQ (Yet Another Fine Locking Question)

2000-08-31 Thread Dave Watts
If I have references to session variables that are nested, do I need to lock each reference separately or can I wrap the whole thing in one lock? You can, and probably should, wrap them all within one lock. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496

RE: Structures No? Cached Queries Yes?

2000-08-31 Thread paul smith
Thanks! In an entirely different Structure/Cached Query application comparison from the one where I earlier today posted the code here, I'm seeing Structures are still 15% slower. Dave Watts opined here that he didn't believe there really was a limit to how many queries CF would cache, the CF

Re: (OT) making fields readonly with JavaScript

2000-08-31 Thread John Andrichak IV
There is a JavaScript element attribute "disabled." Setting "someFormField.disabled = true" will cause whatever "someFormField" is to be grayed out. John Andrichak IV Web Programmer Dannemiller Memorial Educational Foundation -Original Message- From: Jamie Keane [mailto:[EMAIL

RE: UNC Path's for CFFILE Uploads

2000-08-31 Thread mherbene
It works. Even though you tried to open up permissions, there's probably something in that arena in your way. Turn on auditing on machine foo and you'll see what. -Original Message- From: Jeremy Allen [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 31, 2000 11:11 AM To: [EMAIL

RE: JavaScript Question

2000-08-31 Thread Steve Reich
I can't remember where or the name of the JavaScript forum off of cf-talk It's called JS-Jive and you can subscribe by sending a blank email to [EMAIL PROTECTED] There are over 330 participants and it has been an excellent resource for JavaScript and CF related issues. I would recommend

HELP: CF server down -- Dr. Watson errors

2000-08-31 Thread Robert M. Saxon, Jr.
We have an NT Server (SP5) running CF 4.01 Pro. For no apparent reason, we are receiving the following error in Dr. Watson: An application error has occurred and an application error log is being generated. cfserver.exe Exception: access violation [0xc005],Address 0x0054ef3a This causes

Re: (OT) making fields readonly with JavaScript

2000-08-31 Thread Jamie Keane
Yep, that'll do it. I forgot entirely about blur(). Thanks! -- Jamie Keane Programmer SolutionMasters, Inc. 9111 Monroe Rd., Suite 100 Charlotte, NC 28270 www.solutionmasters.com 704.563.5559 x 228 Voice 704.849.9291 Fax -Original Message- From: Jason Powers [EMAIL PROTECTED] To:

OT: JavaScript Email List

2000-08-31 Thread Steve Reich
I've noticed a lot of JavaScript messages coming through and I wanted to make my quarterly reminder that there is a JavaScript list called JS-Jive that was spawned from this list. It includes a large community if CF developers as well as ASP, PHP, and other web application platform developers.

Re: Can NOT get INSERT QUERY to work for the live of me!

2000-08-31 Thread pan
From: "Jeremy Toevs" [EMAIL PROTECTED] [Microsoft][ODBC Microsoft Access Driver] Data type mismatch in criteria expression. One (or more) of your inserts need to be changed from '#x#' to ##. I.E., your trying to put text into a numeric field.

RE: IIS Locking Files

2000-08-31 Thread David E. Crawford
This is a multi-part message in MIME format. --=_NextPart_000_0052_01C01370.1F8B9480 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Re: IIS "Locking" FilesWell, I would, except that I am using the FTP client builtin to WebCAM32 and it is not as

RE: getting data from queries as a structure/array

2000-08-31 Thread Jeremy Allen
Why would you avoid using Evaluate I can think of a few reasons but I am interested in hearing your Reasons :) Jeremy Allen [EMAIL PROTECTED] -Original Message- From: Rick Osborne [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 31, 2000 12:42 PM To: [EMAIL PROTECTED] Cc: [EMAIL

CF not letting go of database connection?

2000-08-31 Thread Boris
I have a number CF based pages that once the query is completed with the data presented it will not let go of the database connection to my Sybase SQL Anywhere database. Even after the page has been exited. Any suggestion would be appreciated. Boris

Re: Structures No? Cached Queries Yes?

2000-08-31 Thread Billy Cravens
ewww... I hate long blocks of cfset's :) Use cfscript instead when you have all those cfsets.. that'll speed things up some more. Additionally, a question: I've never had any problems with just sticking data in a structure, but without "creating" the structure using StructNew().. does anyone

Re[2]: (OT) making fields readonly with JavaScript

2000-08-31 Thread Carol Bluestein
Yes, it works and works well. Carol L. Bluestein Senior Programmer NYS Office of Real Property 518-486-6335 [EMAIL PROTECTED] I haven't tried this, and in fact I'm stealing this from the JS-Jive list: onFocus="this.blur()" in the input tag Ricq Pattay [EMAIL

RE: can you store a structure in a client var?

2000-08-31 Thread Jeremy Allen
You cannot store but very few data types in Client Variables. No complex objects in client variables just Strings, Datevalues and Numbers are allowed in client variables. One of the ways to circumvent this is to WDDX a struct and save it as a client variable. Load up session variables with

RE: CF vs. ASP (was: What I want in CF (was: Learning ASP))

2000-08-31 Thread Andy Ewings
On the contrary...I give massive amounts of praise to CF for exactly what it is - a web development tool that makes development very quick and easy to do in comparison to other languages whilst retaining a great deal of the flexibilty. What you have to realise is that the further down the

Dynamic Dropdowns From Queries?

2000-08-31 Thread Gina Shillitani
I want to create dynamic dropdown boxes where the second box changes based on the selection of the first box, but using CFQUERY to fill the contents of both boxes... for example, the first select box contains the results of QUERY1, and based on what they select from that box, I want to fill the

RE: YAFLQ (Yet Another Fine Locking Question)

2000-08-31 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 You'll want to modify that code a bit... You're better off avoiding any locks around things like CFQUERY that can take a while to run. Just skimming the code, it looks like you're READING session.susertype and session.suser_id; and you're not

Oracle Concatenation???

2000-08-31 Thread Duane Boudreau
Hi All, The following SQL string concatenation in Oracle is producing an error SELECT image_title, 'http://www.hello.com/empower/global/' + filename AS image_location FROM images ORDER BY image_title Error Occurred While Processing Request Error Diagnostic

RE: CFLOCK on Session Variables

2000-08-31 Thread Kevin Miller
I love Cold Fusion, but this is a really rotten basket that screams of design flaw. Do we have a commitment from Allaire that this mess is going to get fixed in the next version? Locking needs to be handled on the back-end and not be dependant upon programmers to behave themselves, especially

Re: can you store a structure in a client var?

2000-08-31 Thread Don Vawter
Can store as session but not a client var - Original Message - From: "Stas Newdel" [EMAIL PROTECTED] To: "CFTalk" [EMAIL PROTECTED] Sent: Thursday, August 31, 2000 10:44 AM Subject: can you store a structure in a client var? I remember that you can't store a structure in either a

RE: Which one will take?

2000-08-31 Thread Ed Toon
It'll take the .cfm. Now why would you do a stupid thing like that... ;) -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

RE: Dynamic Dropdowns From Queries?

2000-08-31 Thread Olive, Christopher M Mr NMR
look into nate weiss' fabulous TwoSelectsRelated tag on allaire's developer's exchange. Chris Olive, DOEHRS Website Administrator -Original Message- From: Gina Shillitani [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 31, 2000 1:44 PM To: '[EMAIL PROTECTED]' Subject: Dynamic

Re: CFLOCK on Session Variables

2000-08-31 Thread Jim McAtee
-Original Message- From: Zachary Bedell [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Date: Thursday, August 31, 2000 11:28 AM Subject: RE: CFLOCK on Session Variables Okay... Last time now... This is your server [holds up egg]. This is your server with out locking

RE: Javascript Question

2000-08-31 Thread Robert Everland
Actually what I want is the opposite. I want it to be a link until they click it so the order is not submitted more than one time. Do you know how to do this? Robert Everland III Web Developer Dixon Ticonderoga -Original Message- From: Jamie Keane [mailto:[EMAIL PROTECTED]] Sent:

  1   2   >