RE: Determining if a java applet has been loaded in JS?

2002-04-26 Thread Adrian Lynch
The page might be considered loaded even though the applet isn't. Don't know for sure, but it might be the case. Couldn't you get the applet to throw something to the page once loaded which triggers the JavaScript to run? Ade -Original Message- From: Shawn Grover [mailto:[EMAIL

RE: Determining if a java applet has been loaded in JS?

2002-04-26 Thread Neil Clark - =TMM=
sic I am sure that there is nothing vanilla with .js and browser which uniquely identifies how much of the applet byte code has been loaded at the loading time of the applet. One solution would be to have two applets: one the continous progress bar applet, and the other the actual applet. Once

javaScript (simple)

2002-04-26 Thread Deborah Curley
Hi all, Anyone have the code readily available for an OnClick action to make sure a customer wants to delete the record (i.e., click the delete button, get prompted for whether you really want to delete and don't do the action unless you. TIA, Deb

RE: javaScript (simple)

2002-04-26 Thread Adrian Lynch
alert(You sure matey??) :O) -Original Message- From: Deborah Curley [mailto:[EMAIL PROTECTED]] Sent: 26 April 2002 12:16 To: CF-Talk Subject: javaScript (simple) Hi all, Anyone have the code readily available for an OnClick action to make sure a customer wants to delete the record

RE: javaScript (simple)

2002-04-26 Thread Stephen Galligan
Try this INPUT TYPE=button VALUE=Delete Record onClick=return confirm('Are you sure you want to delete this record?') Regards Stephen -Original Message- From: Deborah Curley [mailto:[EMAIL PROTECTED]] Sent: 26 April 2002 12:16 To: CF-Talk Subject: javaScript (simple) Hi all, Anyone

RE: javaScript (simple)

2002-04-26 Thread Neil Clark - =TMM=
var conf = confirm('you sure?'); should do it... well it will give an OK and Cancel option, you will then to have to check if it was OK or cancel by if(conf) HTH Neil __ This list and all House of Fusion resources hosted by

Re: javaScript (simple)

2002-04-26 Thread nagraj
Hi Deborah Curley, Try this out. html head titletest/title /head SCRIPT LANGUAGE=JavaScript TYPE=text/javascript !-- function checkdelete() { if (confirm(Are You sure to Perform Delete or not)) { alert(Yes Go for Deleting to the next form); document.frm.submit(); } } //-- /SCRIPT

RE: javaScript (simple)

2002-04-26 Thread Adrian Lynch
http://www.shiningstar.net/articles/articles/javascript/confirmsubmit.asp?ID =ROLLA -Original Message- From: nagraj [mailto:[EMAIL PROTECTED]] Sent: 26 April 2002 12:52 To: CF-Talk Subject: Re: javaScript (simple) Hi Deborah Curley, Try this out. html head titletest/title /head

Re: CFFORM and CFIF Part II

2002-04-26 Thread Jaye Morris
head Why cant I use cfif inside of a cfinput tag? /head cfset this.Value=I know i cant use this. cfform method=post action=nocfif.cfm !--- it will not work like this --- cfinput type=text name=myFormElement value=cfif isDefined(this.Value)#this.Value#/cfif !--- or like this --- cfinput

SQL Query

2002-04-26 Thread Joshua Tipton
I need this query to pull the reg_no, dis_no, m_id, and the y_id from tbl_CTMCORPMONTHYEARRDD where it cannot be found in pagan table. I wrote this query and cannot get it to work please help. Josh SELECT tbl_CTMCORPMONTHYEARRDD.reg_no, tbl_CTMCORPMONTHYEARRDD.dis_no,

RE: Get list of tables from a SQL Server DB

2002-04-26 Thread Joshua Tipton
sp_helpdb and the db name -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 12:55 AM To: CF-Talk Subject: Re: Get list of tables from a SQL Server DB Is there any way I can get the list of tables in a SQL 2000 DB programmatically ? I guess

RE: CFFORM and CFIF Part II

2002-04-26 Thread Ryan Pieszak
This is just a guess... Instead of: cfinput type=text name=myFormElement value=cfif isDefined(this.Value)#this.Value#/cfif Try: cfinput type=text name=myFormElement cfif isDefined(this.Value)value=#this.Value#/cfif -Original Message- From: Jaye Morris [mailto:[EMAIL PROTECTED]] Sent:

RE: SQL Query

2002-04-26 Thread Dimple Goshar
You can write this query using NOT IN operator -Original Message- From: Joshua Tipton [SMTP:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 6:19 PM To: CF-Talk Subject: SQL Query I need this query to pull the reg_no, dis_no, m_id, and the y_id from

RE: CFFORM and CFIF Part II

2002-04-26 Thread Dimple Goshar
what is the error that you r getting on the browser? -Original Message- From: Jaye Morris [SMTP:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 6:18 PM To: CF-Talk Subject: Re: CFFORM and CFIF Part II head Why cant I use cfif inside of a cfinput tag? /head cfset

RE: SQL Query

2002-04-26 Thread Jeff Brown
wouldn't this be an OUTER JOIN LEFT? v/r, Jeff -Original Message- From: Joshua Tipton [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 8:49 AM To: CF-Talk Subject: SQL Query I need this query to pull the reg_no, dis_no, m_id, and the y_id from tbl_CTMCORPMONTHYEARRDD where it

RE: javaScript (simple)

2002-04-26 Thread mynews
This is what I use: script !-- //delete confirmation function deleterecord(recordID) { if(confirm(This will delete this record. Are you sure you want to continue?)) { document.location=delete_recordss.cfm?recordID=+recordID; return true; } else { return false; } } //-- /script and in the

CF5 Server Reports Not Reporting

2002-04-26 Thread Brockman, Chuck
Don't know if anybody can help with this, but When trying to use the Server Reports in CF5 Admin, I always get No data in the selected time period. Below is an example of the summary report. Report generated on 04/26/2002 08:47:31 Time period shown

RE: Determining if a java applet has been loaded in JS?

2002-04-26 Thread David DiPietro
How about something like this at the end of the page script language=JavaScript1.2 var aExists = 0; function checkForApplet(thisApplet) { if(aExists != 1) { if(thisApplet) { aExists = 1; break(); } } } /script script language=JavaScript1.2

will cftransactoin work?

2002-04-26 Thread mynews
I asked this last week and I wasn't sure about the answer. I have 3 computers accessing a SQL-server at the same time. I need the DB to be locked so they can't read/write the data at the same time. How do I get the servers to get in line and wait for each other? BJ

RE: javaScript (simple)

2002-04-26 Thread David DiPietro
I do it this way script language='javascript' function confirmDuplication(type,ID) { var msg = \n You are about to COPY\n\n+ **\n+ +type+ \n + **\n\n+ FROM: +ID+\n\n +

RE: will cftransactoin work?

2002-04-26 Thread Dave Watts
I have 3 computers accessing a SQL-server at the same time. I need the DB to be locked so they can't read/write the data at the same time. How do I get the servers to get in line and wait for each other? Almost all databases provide that functionality automatically. If one database client

RE: Locking by name - is is application independant ?

2002-04-26 Thread Dave Watts
If i have two applications on the same CF server, indentified by to different CFAPPLICATION tags, say one with an application name Foo and the other Bar, and I execute a bit of code in each that does a *named* cflock using the same name, will that lock extend across applications ? It's

RE: CFFORM and CFIF Part II

2002-04-26 Thread Tammy Hong
be cause you are putting it inside the quotes so it thinks it's a literal string?? shouldn't it be(i think, please check) cfinput type=text name=myFormElement value=cfif isDefined(this.Value)#this.Value#cfelse/cfif -Original Message- From: Dimple Goshar [mailto:[EMAIL PROTECTED]] Sent:

RE: will cftransaction work?

2002-04-26 Thread mynews
= = = Original message = = = This is an automatically generated Delivery Status Notification. Delivery to the following recipients failed. [EMAIL PROTECTED] = Inline Message == To: [EMAIL PROTECTED] From: [EMAIL PROTECTED] Date: Fri, 26 Apr 2002 9:57:51 -0400

WebDav and CF anyone have any insights?

2002-04-26 Thread Webapper
I am going to post this on the Fusebox and CFTalk lists so apologies if some of you see this twice. We are about embark on a Performance and Tuning engagement for a WebDav infrastructure, we have not yet seen the code but are told it is part FuseBox20 and FuseBox30? Does anyone have any

Re: CFFORM and CFIF Part II

2002-04-26 Thread Bud
On 4/26/02, Jaye Morris penned: !--- the only work around is this --- cfif isDefined(this.Value) cfinput type=text name=myFormElement value=#this.Value# cfelse cfinput type=text name=myFormElement value= /cfif /cfform Or cfparam name=this.value value= cfinput type=text name=myFormElement

RE: will cftransactoin work?

2002-04-26 Thread mynews
The problem is that each Server has to read and THEN write before the next one reads. Any ideas? BJ = = = Original message = = = I have 3 computers accessing a SQL-server at the same time. I need the DB to be locked so they can't read/write the data at the same time. How do I get the

RE: contacting congress /

2002-04-26 Thread jon
We use Capwiz, and have been pretty happy with 'em as far as I know. Here's an example of the sticker at work: http://www.efa.org/massri/getarticle.cfm?get=61 We looked briefly at building our own system to do this, but concluded it would be a huge headache. We also use Capwiz to allow users to

RE: CFFORM and CFIF Part II

2002-04-26 Thread Matthew R. Small
It doesn't work because you can't nest cf tags inside each other. You can nest a function inside a tag, but not another tag. What I believe Critz was referring to in the earlier post was that you can cfform cfif ...code... /cfif /cfform You can never cfform

RE: Linux CF5 Merant and SQL Server 2K

2002-04-26 Thread Bill Wheatley
No but I have heard some people having it, they went and purchased drivers from a company. Do a google search and you should be able to find replacement drivers. Bill Wheatley Senior Database Developer Ediets.com Macromedia Certified Coldfusion Developer 954.360.9022 X159 -Original

RE: will cftransactoin work?

2002-04-26 Thread Matthew R. Small
With three servers you might have to write your own queueing function using a common memory space (i.e. the database) as the queue. I don't know of any other methods to achieve atomicity with three servers. I'm sure most people on the list know more about db than I do. - Matt Small

SESSION question

2002-04-26 Thread Mark Leder
Can Session variables sometimes be blocked or otherwise corrupted by passing through a corporate firewall? Here's a scenario: I have a login screen where session variables are created and then passed to a welcome screen. Depending on location of where a client computer is, the variables may or

WDDX Breaking Hidden Field

2002-04-26 Thread Brad Roberts
I know this has been asked before, but I can't find it anywhere. I have a textarea that allows users to type a bunch of text. When submitted, the form variables serialized to wddx and put in a hidden field for the next form. The problem is that if the user enters characters like double quotes,

RE: will cftransactoin work?

2002-04-26 Thread Dave Watts
The problem is that each Server has to read and THEN write before the next one reads. Any ideas? If you have multiple queries that need to be treated as a single transaction, then you can use CFTRANSACTION to group those queries, or write transactional logic in a stored procedure and call

Re: WDDX Breaking Hidden Field

2002-04-26 Thread Critz
oi Brad!! um input type=hidden value='#wddx#' - single quote it? -- Critz Certified Adv. ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion Friday, April 26, 2002, 10:18:41 AM, you wrote: BR I know this has been

RE: WDDX Breaking Hidden Field

2002-04-26 Thread Timothy Heald
an reReplace()? Get a regular expression that will replace ' an witht their ascii equivilents. I may have on laying aropund let me look. Tim Heald ACP/CCFD :) Application Development www.schoollink.net -Original Message- From: Brad Roberts [mailto:[EMAIL PROTECTED]] Sent: Friday,

ColdFusion Exchange broken?

2002-04-26 Thread Ian Lurie
Hi all, Just went to upload a new Spambot poison tag to the dev exchange, and I got a CF error: Error Diagnostic Information An error occurred while evaluating the expression: NOT structKeyExists(output.Author, x) Error near line 142, column 10.

RE: WDDX Breaking Hidden Field

2002-04-26 Thread Tony_Petruzzi
why don't you use the urlencodedformat() before serializing the data. this will take care of any quotes, double quote, pound signs, or any other character that might cause a problem. then use the urldecode() to convert it back. Anthony Petruzzi Webmaster 954-321-4703 [EMAIL PROTECTED]

RE: WDDX Breaking Hidden Field

2002-04-26 Thread Kwang Suh
htmlEditFormat() the packet. input type=hidden name=hiddenfield value=#htmlEditFormat(myWDDXPacket)# Does absolutely no one know about this function? -Original Message- From: Brad Roberts [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 8:19 AM To: CF-Talk Subject: WDDX Breaking

RE: will cftransactoin work?

2002-04-26 Thread Ryan Kime
Depends on your database. I believe SQL Server will allow multiple writes while Oracle locks the table(s) on writes. I'm not sure with cftransaction, the docs make it sound like it might work. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26,

RE: WDDX Breaking Hidden Field

2002-04-26 Thread Timothy Heald
well a regular replace would work as well now that I think about it: CFSCRIPT wddx = Replace(wddx,',##39;,ALL); wddx = Replace(wddx,'',quote;,ALL); /CFSCRIPT That should help some yes? Tim Heald ACP/CCFD :) Application Development www.schoollink.net -Original

File Uploads causing Memory Leaks

2002-04-26 Thread Charlie
Can anyone enlighten me to possible remedies for reducing CPU Usage caused by file uploads. It appears that as our users increase their frequency of uploading large files, that the CPU Usage skyrockets and causes unspecified errors. thanks in advance charlie hanlon fsenablers, inc

RE: will cftransaction work?

2002-04-26 Thread Dave Watts
Depends on your database. I believe SQL Server will allow multiple writes while Oracle locks the table(s) on writes. Neither SQL Server nor Oracle will, by default, allow multiple concurrent writes to the same data. Neither locks the entire table during a write by default, either. Both

RE: WDDX Breaking Hidden Field

2002-04-26 Thread mynews
XMLFormat() was created just for this purpose. BJ = = = Original message = = = well a regular replace would work as well now that I think about it: CFSCRIPT ~wddx = Replace(wddx,',##39;,ALL); ~wddx = Replace(wddx,'',quote;,ALL); /CFSCRIPT That should help some yes? Tim Heald ACP/CCFD :)

rds problems localhost 127.0.0.1

2002-04-26 Thread Paul Ihrig
ok this is odd i have never had this happen before for some reason i cant see my datasource under my localhost rds i have tried to delete recreate both 127.0.0.1 localhost have e checked the password in cfadmin no problem! i get a 404 when looking at it. any ideas? very odd. thanks -paul

Re: will cftransactoin work?

2002-04-26 Thread Jochem van Dieten
[EMAIL PROTECTED] wrote: The problem is that each Server has to read and THEN write before the next one reads. Any ideas? Why? Most databases provide some sort of build in functionality to do this for the obvious reason (automatic incrementing of a primary key field). So you must have a

Systematic diagnosis of CF memory use

2002-04-26 Thread cf refactoring
[double post] I've inherited a CF app with an apparent memory leak. Does anyone have a systematic plan to diagnose and eliminate possible causes? The Macromedia Knowledge Base article http://www.macromedia.com/v1/Handlers/index.cfm?ID=15014Method=Full is helpful, but doesn't provide a plan of

Re: will cftransactoin work?

2002-04-26 Thread mynews
Sure. I am using SQL_server 2000. The servers are all mirrored and they run update agents every so often. The table in question shows which agents ran at which times. I only want a server to run an agent if that agent hasn't run in X minutes. So the servers check to see when it ran last if

ActiveX DLL to return a collection with CFOBJECT

2002-04-26 Thread David Jones
Hi All, I'm a new subscriber to the list and about 3 projects new to CF. I recently posted a message but was unsure if it got to the rest of you. So please paron me if you receive this as a dubplicate. I am having trouble returning a

CF Mas 90

2002-04-26 Thread Justin Hansen
Has anybody integrated a CF app with the Mas 90 Accounting package? How did it go? Justin Hansen -- Uhlig Communications Web Developer / Programmer -- [EMAIL PROTECTED] 913-498-0123 ext 284 --

RE: will cftransaction work?

2002-04-26 Thread Ryan Kime
Man, that's a lot of by defaults! :) You're right, I checked...it's row level locking. They just differ on their locking methodologies (escalating vs. non-escalating). -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 9:58 AM To: CF-Talk

RE: ActiveX DLL to return a collection with CFOBJECT

2002-04-26 Thread BillyC
Looks like you're trying to handle the ADO recordset being returned like you would in ASP. Note that CF really doesn't know how to handle ADO recordsets - you'll probably want to write a wrapper object (or change the current one) to place the recordset into an array (which I *think* CF has no

RE: WDDX Breaking Hidden Field

2002-04-26 Thread Brad Roberts
Thanks. Yeah, I've heard of it (and used it), I was just using it in the wrong place. I was trying to use it when serializing the data to wddx, not on the hidden field value, where it should've been. Another Related Question: I'm now getting errors Not well formed because of special

Re: CF Mas 90

2002-04-26 Thread Jacob
WOW.. MAS90.. have not used that since 1993... At 10:13 AM 4/26/2002 -0500, you wrote: Has anybody integrated a CF app with the Mas 90 Accounting package? How did it go? Justin Hansen -- Uhlig Communications Web Developer / Programmer -- [EMAIL

RE: WDDX Breaking Hidden Field

2002-04-26 Thread Adrian Lynch
the problem is, what happens if they put a single quote in the text field? oi Brad!! um input type=hidden value='#wddx#' - single quote it? -- Critz Certified Adv. ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion

Re: ActiveX DLL to return a collection with CFOBJECT

2002-04-26 Thread Jon Hall
I don't have a solid answer but there area few things to keep in mind when working with COM with cfobject. CF pukes when you try to reference anything with a null value passed back from a com object. CF pukes if you reference a piece of data that is one of the less common datatypes in an ADO

RE: ActiveX DLL to return a collection with CFOBJECT

2002-04-26 Thread David Jones
Thanks, I was actually wondering that same thing. I was just about to try doing that. Changing the object to return an array I mean. Also I was wondering if anyone had an example of a component that does something similar to what I am trying to do. I don't want an proprietary information or

RE: SESSION question

2002-04-26 Thread Dan G. Switzer, II
Mark, Are you sure they had cookies enabled? By default, sessions rely on a cookie that's written to the user's browser. If cookies are disabled, you'll have to manually send the cfid and cftoken variables to the URL. This will keep the sessions intact. -Dan -Original Message- From:

RE: CF Mas 90

2002-04-26 Thread Brian Fox
Hi - Does ColdFusion allow CFTRY blocks to be nested? I thought it did, but after writing nested error handling, whenever I rethrow an error from the inner block, I do not get the outer block's catch clause. I get the CF default error handler. I'm using cfinclude a bit - would that cause

RE: WDDX Breaking Hidden Field

2002-04-26 Thread Brad Roberts
I used htmlEditFormat as Kwang suggested and it works great! My question now is about special characters like the registered mark ®. These seem to cause the xml not well formed error. Is there a function to replace these with these with there ascii equivalent? If not, does anyone have an all

Nested CFTRY blocks

2002-04-26 Thread Brian Fox
Oops. Sorry for the double post. Hi - Does ColdFusion allow CFTRY blocks to be nested? I thought it did, but after writing nested error handling, whenever I rethrow an error from the inner block, I do not get the outer block's catch clause. I get the CF default error handler. I'm using

RE: Nested CFTRY blocks

2002-04-26 Thread Dave Watts
Does ColdFusion allow CFTRY blocks to be nested? I thought it did, but after writing nested error handling, whenever I rethrow an error from the inner block, I do not get the outer block's catch clause. I get the CF default error handler. I'm using cfinclude a bit - would that cause

RE: SESSION question

2002-04-26 Thread Mark Leder
I guess I'll have to pass the cfid and cftoken manually, I know it's a security hole, but there are companies out there that block cookies, unless there's another idea. Thanks, Mark -Original Message- From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002

RE: ActiveX DLL to return a collection with CFOBJECT

2002-04-26 Thread David Jones
Thanks, I'll do that. I don't absolutely have to use ADO, it just so happened that the component I picked to test with returned an ADO record set. To be honest, the components I write in the future will more than likely return arrays anyway. I believe this will help performance in the long haul

RE: File Uploads causing Memory Leaks

2002-04-26 Thread Robert Everland
Well basically when someone is uploading a file CF puts that file in memory, so if they are huge files your mmemory gets used up by that much, there really isn't much you can do to limit this, either offload it to another server, or teach them how to use FTP. ALso maybe there are some java apps

cfif

2002-04-26 Thread Janine Jakim
I am very comfortable with making generic queries and calling them in my page. My colleague mentioned that I should be able to do that with if statements also. I have an cfif statement that I use on several pages and it'd be nice just have it in one spot So this is the code I call into several

RE: Systematic diagnosis of CF memory use

2002-04-26 Thread Dave Watts
I've inherited a CF app with an apparent memory leak. Does anyone have a systematic plan to diagnose and eliminate possible causes? The Macromedia Knowledge Base article http://www.macromedia.com/v1/Handlers/index.cfm?ID=15014Method=Full is helpful, but doesn't provide a plan of attack.

RE: Locking by name - is is application independant ?

2002-04-26 Thread Andy Ousterhout
When should you use each? Right now, I do not use named locks. ANdy -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 9:04 AM To: CF-Talk Subject: RE: Locking by name - is is application independant ? If i have two applications on the same

Re: cfif

2002-04-26 Thread Jerry Johnson
By pulling it in, I assume you want to use this same bit of code from a couple of different places (different sections of code in one cfm or different cfms. CFINCLUDE template=templatename.cfm It doesn't even need to be a .cfm file - even if it contains CFM code. CFINCLUDE

RE: File Uploads causing Memory Leaks

2002-04-26 Thread Ramin Surya
Charlie, Try putting cflock around your cffile. Hope that helps. -Original Message- From: Charlie [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 9:53 AM To: CF-Talk Subject: File Uploads causing Memory Leaks Can anyone enlighten me to possible remedies for reducing CPU Usage

RE: cfif

2002-04-26 Thread Adrian Lynch
cfinclude??? -Original Message- From: Janine Jakim [mailto:[EMAIL PROTECTED]] Sent: 26 April 2002 16:41 To: CF-Talk Subject: cfif I am very comfortable with making generic queries and calling them in my page. My colleague mentioned that I should be able to do that with if statements

RE: cfif

2002-04-26 Thread Andy Ewings
or even better with a Custon Tag -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]] Sent: 26 April 2002 17:03 To: CF-Talk Subject: RE: cfif cfinclude??? -Original Message- From: Janine Jakim [mailto:[EMAIL PROTECTED]] Sent: 26 April 2002 16:41 To: CF-Talk

Real world use for wildcard statement

2002-04-26 Thread Adrian Lynch
Can anyone think of a real world use for a wildcard statement like this LIKE '%a%b%c%d%' It's in the Ben Forta study guide and it came up in a drinking session that there wasn't a real use for this sort of thing. Seaching for strings in a particular order in a larger string would be one, but

Variable names in CFINPUT

2002-04-26 Thread Thane Sherrington
When using CFINPUT, is it possible to do something like this? CFINPUT Name=#VariableName# value=#DefaultValue# When I try, I get an error about duplicate names in CFFORM. T __ Structure your ColdFusion code with Fusebox. Get

Re: cfif

2002-04-26 Thread Douglas Brown
this is where fusebox really comes in handy as far as code reuse goes, you may want to look into it. Success is a journey, not a destination!! Doug Brown - Original Message - From: Andy Ewings [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, April 26, 2002 9:04 AM

RE: Variable names in CFINPUT

2002-04-26 Thread Adrian Lynch
post more of your code please Ade -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: 26 April 2002 17:12 To: CF-Talk Subject: Variable names in CFINPUT When using CFINPUT, is it possible to do something like this? CFINPUT Name=#VariableName#

RE: Real world use for wildcard statement

2002-04-26 Thread Timothy Heald
Well I know we use them to search SQL Databases in the where statement. Tim Heald ACP/CCFD :) Application Development www.schoollink.net -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 12:12 PM To: CF-Talk Subject: Real world use for

RE: Variable names in CFINPUT

2002-04-26 Thread Timothy Heald
Can we see the template that's producing the error? Tim Heald ACP/CCFD :) Application Development www.schoollink.net -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 12:12 PM To: CF-Talk Subject: Variable names in CFINPUT When

RE: Variable names in CFINPUT

2002-04-26 Thread Andy Ewings
Yep you can do this but what appears to be happening is that you are creating 2 form controls with the same name (i.e. #VariableName# - make sure they are all unique -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]] Sent: 26 April 2002 17:16 To: CF-Talk Subject: RE:

RE: cfif

2002-04-26 Thread Janine Jakim
In Fusebox wouldn't you just use a cfinclude. (I know FB2 but haven't had the time to look at FB3) It does work if I use the whole cfif statement. I was hoping to only use parts of it. (ie a cfinclude that had only CFIF CFELSEIF but not /CFIF It's the code between the cfelseif and /cfif I

RE: Variable names in CFINPUT

2002-04-26 Thread Thane Sherrington
At 05:16 PM 4/26/02 +0100, Adrian Lynch wrote: post more of your code please I'll have to get it from home. Basically, I have a set of variable names and values that I get from a query. So it's something like this: CFQUERY name=GetFields datasource=#dsn# SELECT FieldName

Re: ActiveX DLL to return a collection with CFOBJECT

2002-04-26 Thread Joseph Thompson
For fun I converted the JavaScript ADO definitions into a CF include file and posted an example of running through a recordset that way... It may help? http://cfhub.com/advanced/ado/ Basically I want to see a component that for sure works with CF so that I can be sure of why mine do not.

UPS E-commerce online tools (XML) and CF and Ben Forta's CF_UPSPrice tags impending death?

2002-04-26 Thread Mark W. Breneman
Has anyone seen a custom tag that talks to UPS E-commerce online tools (XML) for shipping rates? I have found tags for time-in-transit and package tracking but, not for shipping rates. I am leaning toward using CF ratemonger, but I would rather have something with no maintenance. cf_Rumor We

RE: Systematic diagnosis of CF memory use

2002-04-26 Thread Mike Brunt
As always Dave well said, I would also look for any usage of CFX_ tags and if they are used I would lock them, you never know how well cfx code is written or not as the case may be. When you get beyond the show stoppers look at things like blockfactor= in your sql select queries and there are a

double post: access2000 on unix. Is it even possible??

2002-04-26 Thread Will Swain
Hello, This might be a stoopid question (in fact i'm pretty sure it is) but I have always worked with NT servers up to now. I want to port a site over to a unix server. The backend DB is Access2000. Are there ODBC drivers for Access on Unix? Can I do this, or do I need to upgrade to SQL server?

RE: Variable names in CFINPUT

2002-04-26 Thread Adrian Lynch
take it out of the cfinput and see what it's producing -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: 26 April 2002 17:33 To: CF-Talk Subject: RE: Variable names in CFINPUT At 05:16 PM 4/26/02 +0100, Adrian Lynch wrote: post more of your code please I'll

RE: Locking by name - is is application independant ?

2002-04-26 Thread Dave Watts
When should you use each? Right now, I do not use named locks. If you're using CF 4.5.x or higher, you should use the SCOPE attribute when locking memory variables, and the NAME attribute for locking other things, like CFX tags, if they need to be locked. If you're using CF 4.0.x, you don't

RE: double post: access2000 on unix. Is it even possible??

2002-04-26 Thread Adrian Lynch
Wine?? Win4Lin? Would that even work? -Original Message- From: Will Swain [mailto:[EMAIL PROTECTED]] Sent: 26 April 2002 17:47 To: CF-Talk Subject: double post: access2000 on unix. Is it even possible?? Hello, This might be a stoopid question (in fact i'm pretty sure it is) but I

RE: Variable names in CFINPUT

2002-04-26 Thread Andy Ewings
If you output #GetFields.FieldName# for each iteration of the loop you will undoubtedly find that two or more values are the same, which you can't have if you are using this to name form controls -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]] Sent: 26 April 2002 17:47

OT: Sendmail/listservs

2002-04-26 Thread Scott Weikert
Any Sendmail and/or listserv gurus out there? I've got some questions, hopefully you've got answers. This is to do with a CF project so it's not entirely off-topic. :) The project is an online newsletter engine, with email broadcast capabilities to subscribers. Right now, in the prototype, I'm

RE: Performance boost with Upgrade to dual processor ??

2002-04-26 Thread Tony Schreiber
You can actually set SQL7 to run on a particular processor. I know for a fact that SQL 7 can take advantage multiple processors. You have to be careful though, I am not sure but you may have to get another license. Tim Heald ACP/CCFD Application Development www.schoollink.net

RE: double post: access2000 on unix. Is it even possible??

2002-04-26 Thread Andy Ewings
eh?. In answer to your question Will there are ODBC drivers but you'll need to make sure your RDBMS is running on NT if you are using Access or SQL - if you want to port that over to then you will need sommat like Oracle -Original Message- From: Adrian Lynch [mailto:[EMAIL

RE: double post: access2000 on unix. Is it even possible??

2002-04-26 Thread Stephen Galligan
www.unixodbc.org http://www.atinet.com/Products/OpenRDA/ODBC_UNIX/ODBC_UNIX_access.asp -Original Message- From: Will Swain [mailto:[EMAIL PROTECTED]] Sent: 26 April 2002 17:47 To: CF-Talk Subject: double post: access2000 on unix. Is it even possible?? Hello, This might be a stoopid

RE: double post: access2000 on unix. Is it even possible??

2002-04-26 Thread LANCASTER, STEVEN M. (JSC-OL) (BAR)
What about exporting to a MySQL database and using that, it is pretty comparable to Access as far as databases go.. Steven Lancaster Barrios Technology NASA/JSC 281-244-2444 (voice) [EMAIL PROTECTED] -Original Message- From: Will Swain [mailto:[EMAIL PROTECTED]] Sent: Friday, April

RE: Get list of tables from a SQL Server DB

2002-04-26 Thread Costas Piliotis
Uh... Isn't it: select [name] from sysobjects where xtype = 'U' -Original Message- From: Tim Heald [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 25, 2002 9:58 PM To: CF-Talk Subject: RE: Get list of tables from a SQL Server DB CFQUERY name=getTables datasource=#dsdata# Select

Problem with CFMAIL attachements

2002-04-26 Thread Smith, Matthew P -CONT(DYN)
In the mail app I am working on, this error happens when trying to cfmail with attachments: Unable to write mail message to disk. An unexpected error occurred while attempting to save the mail message. Here's the frustrating part: it works fine for me, but on my bosses machine it doesn't. It

RE: Get list of tables from a SQL Server DB

2002-04-26 Thread Andy Ewings
is it xtype?.I thiught it was just type but that's off the top of my head -Original Message- From: Costas Piliotis [mailto:[EMAIL PROTECTED]] Sent: 26 April 2002 18:07 To: CF-Talk Subject: RE: Get list of tables from a SQL Server DB Uh... Isn't it: select [name] from sysobjects

RE: Get list of tables from a SQL Server DB

2002-04-26 Thread Timothy Heald
Yeah I hosed that up didn't I. I was umm tired yeah tired, and stuff. Tim Heald ACP/CCFD :) Application Development www.schoollink.net -Original Message- From: Costas Piliotis [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 1:07 PM To: CF-Talk Subject: RE: Get list of

Dynamic Var names

2002-04-26 Thread Andy Ewings
I'm having a mind blank (well it is gone 6 on Friday). Can you have dynamic var names?ie.g. you have a URL variable called test which has a numeric value and you want to use this in the name of a client var. e.g. test=1 and you want client.variable#url.test#. I had some crazy idea that

RE: Dynamic Var names

2002-04-26 Thread Bryan Love
cfset client.variable#url.test# = bla bla cfoutput #evaluate(client.variable url.test)# or #evaluate(client.variable#url.test#)# /cfoutput +---+ Bryan Love Macromedia Certified Professional Internet Application Developer

  1   2   >