Triggering a form submission on an AutoSuggest field

2008-05-15 Thread Sheila Handler
I have a form with a field where the user specifies the name of a student. I've specified autosuggest on that box. I would like the form to auto-submit after the user specifies the name. Is there any way to do this? If this were a normal non-autosuggest field, I'd have no problem adding an onCh

oracle datasource as OLEDB

2003-08-26 Thread Sheila Handler
This is my first encounter with Oracle. I need to define a datasource in CF5. As far as using the database, it'll be nothing but the simplest SELECT statements, so that shouldn't be a problem. Is it possible to define an Oracle database with OLEDB, or do I have to use ODBC? Can anyone give me some

oracle datasource as OLEDB

2003-08-26 Thread Sheila Handler
This is my first encounter with Oracle. I need to define a datasource in CF5. As far as using the database, it'll be nothing but the simplest SELECT statements, so that shouldn't be a problem. Is it possible to define an Oracle database with OLEDB, or do I have to use ODBC? Can anyone give me some

oracle datasource as OLEDB

2003-08-22 Thread Sheila Handler
Even if Oracle is not one of the choices on the drop-down in the CF5Pro Admin ODBC data sources page? >> Actually the clients have pro; from the documentation, it >> seemed to me that only Enterprise supports Oracle, and I told >> them they'd have to upgrade. Is that true? Or can they use MS >

oracle datasource as OLEDB

2003-08-20 Thread Sheila Handler
t;-Original Message- >>From: Sheila Handler [mailto:[EMAIL PROTECTED] >>Sent: Tuesday, August 19, 2003 10:18 PM >>To: CF-Talk >>Subject: oracle datasource as OLEDB >> >> >>This is my first encounter with Oracle. I need to define a >>datasource

oracle datasource as OLEDB

2003-08-20 Thread Sheila Handler
t;-Original Message- >>From: Sheila Handler [mailto:[EMAIL PROTECTED] >>Sent: Tuesday, August 19, 2003 10:18 PM >>To: CF-Talk >>Subject: oracle datasource as OLEDB >> >> >>This is my first encounter with Oracle. I need to define a >>datasource

oracle datasource as OLEDB

2003-08-20 Thread Sheila Handler
Thanks for your replies, guys. One more question, does this drive work with Oracle 9? >The Microsoft ODBC driver for Oracle seems to be the best companion for CF, >so you might want to try that. > >- Original Message ----- >From: "Sheila Handler" <[EMAIL PROT

oracle datasource as OLEDB

2003-08-19 Thread Sheila Handler
This is my first encounter with Oracle. I need to define a datasource in CF5. As far as using the database, it'll be nothing but the simplest SELECT statements, so that shouldn't be a problem. Is it possible to define an Oracle database with OLEDB, or do I have to use ODBC? Can anyone give me some

RE: Wierd Form Error

2002-09-18 Thread Sheila Handler
The problem is that due_date is interpreted as a server-side validation request. Normally this would be supplied as follows: This would validate that an input field named "due" is a date. Since this is triggered by the name of the input field ending in _date, your "regular" field is being misi

RE: trouble passing variables

2002-06-29 Thread Sheila Handler
Try scoping the variables in the cfparam tags to "attributes.x" since that's what you use in your update statement. Date: Sat, 29 Jun 2002 18:57:17 -0600 From: Kwang Suh <[EMAIL PROTECTED]> Subject: RE: trouble passing variables Message-ID: <[EMAIL PROTECTED]> Well, you didn't scope the cfparam

RE: check for mixed case plus a numeric

2002-05-15 Thread Sheila Handler
>bOK = Refind("[A-Z]",pass) AND ReFind("[a-z]",pass) AND ReFind("[0-9]",pass) This will check that the password contains at least one letter of each case and a digit, but it won't make sure the password contains no other symbols. I'm assuming the password is supposed to consist ONLY of mixed ca

CFMail and html/text

2002-01-09 Thread Sheila Handler
>From experience with a project a while ago, I 'd say there would be a big problem -- the time it takes to actually send out those emails using cfmail, or even aspqmail. I remember some horrendous figures like 5 hours to send out 30,000 emails. Original message: Date: Tue, 8 Jan 2002 09:18:27 -

Re: Search from a database

2001-11-14 Thread Sheila Handler
rlink,keywords FROM search WHERE 1=1 AND keywords LIKE '#oneKeyword#%' Sheila Handler jdt technologies, ltd --- Steven Lancaster <[EMAIL PROTECTED]> wrote: > Without using Verity what is the best way to set up > a search for keywords > That I have setup in a data

RE:

2001-08-14 Thread Sheila Handler
dircount. (that's why they both showed dir even though the last value was a file) I haven't plowed through all your more recent code, but does this help? Sheila Handler jdt technologies, ltd. == You wrote: For some reason the code below lists the la

Building Cold Fusion Search - Dynamic SQL

2001-02-27 Thread Sheila Handler
ND skilld = '#i#' That will end up being AND skilld='skill1' AND skilld='skill2' which is what you want. Sheila Handler jdt technologies, ltd [EMAIL PROTECTED] - Original Message - From: Kim Mayhall <[EMAIL PROTECTED]> To: CF-Talk <[EMAIL PRO

Stopping people doing the 'I clicked submit twice' thing

2001-01-23 Thread Sheila Handler
te checks. //if they fail send a message and return false if (blah blah) { alert ("You messed up. Please fix"); return false; } . //now that we're good to go, change text to please wait document.form1.submitButton.value="Please Wait"; return true; } } // end of c