RE: Rich Text Files (RTF) Creation and Manipulation

2000-08-25 Thread Clint Tillerson
I'll second Dave's suggestion below to use WordPerfect. I too struggled and eventually succeeded. I had to produce several 100+ page reports with complex tables, headers, page numbering, and page breaks. The code produced by Word was very hard to edit, and Word threw in a lot of "trash" co

RE: picking up form variables on the action page??

2000-08-24 Thread Clint Tillerson
If no form variables are passed, then form.fieldnames will not be defined. IsDefined('form.fieldnames') = False If a checkbox exists in a form and is not checked when the form is processed, then the checkbox variable will not be defined. IsDefined('form.CheckboxVariableName') = False As for

Re: Hidden Fields Problem

2000-08-22 Thread Clint Tillerson
Here's the problem: missing quotation mark at the end of "#Form.cust_name# *http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body

RE: OnRequestEnd.cfm

2000-08-22 Thread Clint Tillerson
Could someone offer a brief explanation regarding what OnRequestEnd.cfm is used for? I've never heard of this one. Does it process after the requested cfm template processes as the name might suggest? -- Archives: htt

Re: getting speed of verity search

2000-08-18 Thread Clint Tillerson
Is this the type of thing you're looking for? Put this before the search: Put this after the search: Then, this will convert the time to seconds: This will convert the time to minutes: Then output whichever one you wish to see: #searchTimeSec# Clint R

"Back" and Single Select Form Fields

2000-08-18 Thread Clint Tillerson
Hello all, Here is an issue I'm struggling with. Perhaps someone can shed some light or at least confirm I'm stuck with this behavior so I can move on. Background: A form is built dynamically step by step based on the user input. It consists of several single value and multi value select list