RE: CFTRY/CFCATCH question

2001-08-10 Thread Martin Laine
First, you can't put CFCATCH tags in the middle of a CFTRY. I has to be the last tag in the CFTRY. I would do need to do this: ... queries ...

RE: counting form fields

2001-08-09 Thread Martin Laine
For the number of form fields use this instead: ListLen( FORM.FieldNames ) Remember that when you use an image form input to submit the form two extra fields will be sent (x and y coordinates of the mouse click). Also, unticked checkboxes will not be counted in and fields with the same name (esp

RE: 2 javascript questions

2001-08-01 Thread Martin Laine
Answer to first question You need to evaluate the javascript code: function toForm(theForm, theField) { eval("document." + theForm + "." + theField + ".focus()"); } -Original Message- From: Timothy Lynn [mailto:[EMAIL PROTECTED]] Sent: 31 July 2001 20:19 To: CF-Talk Subject: 2 javascri