Slightly OT....HTML question

2000-12-05 Thread Andy Ewings
I have a form with a select control that loads approx 7000 options into it (I know this is stupid but it's what the client wants). When I view the form on a PC it's fine. However on a Mac I see nothing. When I reduce the number of entries to about 4,500 I can see them on the Mac. Does anyone

Re: Slightly OT....HTML question

2000-12-05 Thread Todd Ashworth
could split that up, or drill down to a more manageable number? Todd Ashworth - Original Message - From: "Andy Ewings" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, December 05, 2000 7:53 AM Subject: Slightly OTHTML question | I have a form w

Re: Slightly OT....HTML question

2000-12-05 Thread Jamie Keane
704.563.5559 x 228 Voice 704.849.9291 Fax -Original Message- From: Todd Ashworth [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Date: Tuesday, December 05, 2000 8:53 AM Subject: Re: Slightly OTHTML question | Does anyone know if there is a known issue here and if so is there a way | around

RE: Slightly OT....HTML question

2000-12-05 Thread Andy Ewings
]] Sent: 05 December 2000 14:02 To: CF-Talk Subject: Re: Slightly OTHTML question | Does anyone know if there is a known issue here and if so is there a way | around it? Yes .. strike the client about the head firmly and repeatedly until they understand the foolishness of their ways ;) What

Re: Slightly OT....HTML question

2000-12-05 Thread Dick Applebaum
Andrew You can try allocating more memory to the browser on the Mac. A better approach might be to use something like twoSelectsRelated or ThreeSelectsRelated custom tags availab at allaire. At least you could break the unwieldy number of entries into smaller groups. HTH Dick At 12:53 PM

Re: Slightly OT....HTML question

2000-12-05 Thread Todd Ashworth
hmm .. maybe you could even break it down by some sort of geographic location? Todd Ashworth - Original Message - From: "Andy Ewings" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, December 05, 2000 9:05 AM Subject: RE: Slightly OTHTML ques

RE: Slightly OT....HTML question

2000-12-05 Thread Andy Ewings
notify us on +44 (0)207 387 8890. -Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: 05 December 2000 14:39 To: CF-Talk Subject: Re: Slightly OTHTML question hmm .. maybe you could even break it down by some sort of geographic location? Todd Ashworth

RE: Slightly OT....HTML question

2000-12-05 Thread Andy Ewings
- From: Dick Applebaum [mailto:[EMAIL PROTECTED]] Sent: 05 December 2000 14:11 To: CF-Talk Subject: Re: Slightly OTHTML question Andrew You can try allocating more memory to the browser on the Mac. A better approach might be to use something like twoSelectsRelated or ThreeSelectsRelated

Re: Slightly OT....HTML question

2000-12-05 Thread Jamie Keane
: RE: Slightly OTHTML question Thanks. I'll have a lok at these tags. Can you give me a brief desription as to what they do? -- Andrew Ewings Project Manager Thoughtbubble Ltd http://www.thoughtbubble.net

RE: Slightly OT....HTML question

2000-12-05 Thread Andy Ewings
notify us on +44 (0)207 387 8890. -Original Message- From: Jamie Keane [mailto:[EMAIL PROTECTED]] Sent: 05 December 2000 15:10 To: CF-Talk Subject: Re: Slightly OTHTML question Basically what they do is whip together two or three select boxes that are tied with Javascript. Select

Re: Slightly OT HTML question

2000-11-21 Thread Michael Thomas
PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: Slightly OT HTML question Date: Tue, 21 Nov 2000 04:27:00 -0500 Maybe this is too complicated, but I would keep the original file names, and put it in a directory named '149284.' Although, if you don't want to try that approach you may want

RE: Slightly OT HTML question

2000-11-21 Thread Stewart McGowan
A short snippet Regards Stew !--- Get the data to populate the project drop down box --- CFQUERY name="File_Name" datasource="#application.dsource#" SELECT Distinct File_Name1 FROM Files /CFQUERY !--- Choose a project then post back to itself --- FORM name="Info" action="move.cfm"

Slightly OT HTML question

2000-11-21 Thread Norman Elton
Hello- I know this is slightly off topic, but it is related to HTML, so here it goes: I keep an archive of files. A user uploads a file ("MyFile.doc") and it gets dumped into a directory for storage. It gets renamed to a unique name ("149284.doc") for storage, and the original filename is

Re: Slightly OT HTML question

2000-11-21 Thread Jeffry Houser
Maybe this is too complicated, but I would keep the original file names, and put it in a directory named '149284.' Although, if you don't want to try that approach you may want to link to another CFM page that renames the file and then links to it, either using javascript or a cflocation.