CFINPUT required??

2000-05-29 Thread Deva Ramesh
hi all, i have a very simple problem here. my CFINPUT tag doesnt work properly. when i want it to be required it does not pop up the Dialog box. am i missing something here? thanx in advance ramesh -- Archives:

RE: CFINPUT required??

2000-05-29 Thread Dave Notik
Make sure you set the REQUIRED parameter and the MESSAGE parameter and that the inputbox is within CFFORM tags, which must also contain your submit button. Also, be sure JavaScript is enabled in your browser. -Dave -Original Message- From: Deva Ramesh [mailto:[EMAIL PROTECTED]] Sent:

Re: CFINPUT required??

2000-05-29 Thread Fred T. Sanders
hmm, care to elaborate a little more? or better yet try and paraphrase exactly what you want I think I know but I wanna be sure. Fred - Original Message - From: "Deva Ramesh" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 29, 2000 2:05 AM Subject: CFINPUT required?? hi

Re: Another Query to Table

2000-05-29 Thread Patric Stumpe
Well David, that's the way... :-) Thanks a lot. Patric - Original Message - From: "David Gassner" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 29, 2000 2:25 AM Subject: RE: Another Query to Table | Patric, you'll need to use the index array method of getting to query

SQL server error

2000-05-29 Thread Dave Wilson
Hi all, Can anyone tell me what may be causing the following error on NT4, SP5, CF4.01 SQL7.0 SP2, MDAC 2.5 installed on web server. Everything was working fine for the past month or so then this just started to appear today and no changes have been made.Here is thew error message ODBC Error

Web Cameras and CF

2000-05-29 Thread Gordon Burns
Client has decided he wants to have a Web cam (Exterior) looking over an admittedly super beach next to his hotel. It can get spectacularly wild. So far so good, however he wants to update the pic every 20 mins and have every third one stored so users can see what it was like on the hour any

Re: Web Cameras and CF

2000-05-29 Thread Yannick Simon
C'est un message de format MIME en plusieurs parties. --=_NextPart_000_0432_01BFC97A.034F8780 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Web Cameras and CFUsually, a special software is provided with the = webcam, it stores the

Buffering in ColdFusion.

2000-05-29 Thread Anton Westholm
Is there a way in ColdFusion to present the browser with output as a page executes instead of waiting until the page has finished executing? In ASP this works by setting Response.Buffer = True Thanks /Anton --

Populating Select Box - Help?

2000-05-29 Thread Marco Gil
This is a multi-part message in MIME format. --=_NextPart_000_006A_01BFC957.9B308810 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I have the following situation... Two tables, one that stores the main = category and another table that

getting the name of the request page

2000-05-29 Thread vinicius
This is a multi-part message in MIME format. --=_NextPart_000_0004_01BFC968.788DBD80 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi there! I'd like to know if there's a way to get the name of the page requested = by the user? I'm

Multiple attributes in an LDAP Filter

2000-05-29 Thread Lanny R. Udey
This is a MIME message. If you are reading this text, you may want to consider changing to a mail reader or gateway that understands how to properly handle MIME multipart messages. --Boundary_(ID_J308I14lNzfbT64WoFqDOA) Content-type: text/plain; charset=US-ASCII Content-disposition: inline

Re: verity search problem

2000-05-29 Thread Sima Lee
Hi Eron, Since my computer doesn't like matches tag, I combined verity search with SQL query and solved the problem. Now it works perfect. Thank you very much for your help. Sima - Original Message - From: Eron Cohen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, May 28, 2000

Re: Web Cameras and CF

2000-05-29 Thread Steve Reich
My experience has been that the software included with the cam will do all that you mentioned. - Original Message - From: "Gordon Burns" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 29, 2000 8:22 AM Subject: Web Cameras and CF Client has decided he wants to have a Web cam

RE: Web Cameras and CF

2000-05-29 Thread Rob Sherman
Try: http://www.webcam32.com/ you can have a live feed using a java applet that you mandate forced live feed or update intervals, as well as having timed shots taken and FTP'd to the server for storage. No CF needed. Sincerely, Rob Sherman Developer / Allaire Certified Instructor CFDude,

cffile

2000-05-29 Thread nair ajit
Hi, I'm using CFFILE command's UPLOAD action to upload photographs.In order to restrict the users from uploading files other than gif's or jpeg's, i used the ACCEPT attribute ie. cffile action="upload" destnation="c:\temp" accept="images/gif, images/jpeg" But now what is happening is

RE: Buffering in ColdFusion.

2000-05-29 Thread Dave Notik
As far as I know, this is impossible with ASP. I've wanted to do this numerous times, but always resorted to using ASP for that functionality. ColdFusion processes everything and creates an HTML page before sending it to the browser. -Dave -Original Message- From: Anton Westholm

Re: Web Cameras and CF

2000-05-29 Thread Judah McAuley
I had to set up a system like this for a client. Basically, the process needs to work by attaching the web cam to a video board (like the Winnov) and having software that snags a jpg from the video feed every 20 minutes. Generally speaking, as long as the video board supports Video for

Tricky sorting riddle.

2000-05-29 Thread Cyrill Vatomsky
Hi All, I am building a real-estate DB and I have stumbled over an interesting riddle: In this case I use the following fields in Access DB (tenants) Property_ID -integer (related to an ID in Properties table) Name-Text, sq_ft -integer rate

RE: Tricky sorting riddle.

2000-05-29 Thread Cyrill Vatomsky
Followup to my own message :-) Hi All, I am building a real-estate DB and I have stumbled over an interesting riddle: In this case I use the following fields in Access DB (tenants) Property_ID -integer (related to an ID in Properties table) Name -Text,

Re: Tricky sorting riddle.

2000-05-29 Thread Jim McAtee
Not too sure what date functions are valid in Access, but you couldn't use an CF functions within the expression if you expect it to be executed by the database. How about just: cfquery name="getTenants" datasource="xyz" SELECT ID, Since, Rate, Lease_length, sq_ft_leased, Name,

Removing spaces

2000-05-29 Thread C
I need a form field that accepts the data, but removes all appearances of spaces from the field in case a user enters any. CW -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

Re: Removing spaces

2000-05-29 Thread Steve Reich
I need a form field that accepts the data, but removes all appearances of spaces from the field in case a user enters any. You can use the trim function to remove spaces at the beginning or end of a string... Trim(Var) If you want to remove spaces that exist in the middle of a string as well,

Re: Removing spaces

2000-05-29 Thread Mark Ireland
Just replace(form.field,spaces,with nothing) when you save it. . . At 07:18 PM 29/05/00 -0500, you wrote: I need a form field that accepts the data, but removes all appearances of spaces from the field in case a user enters any. CW

Re: Removing spaces

2000-05-29 Thread Nick Slay
Try Replace(Form.Field, " ", "") Nick At 19:18 29/05/00 -0500, you wrote: I need a form field that accepts the data, but removes all appearances of spaces from the field in case a user enters any. CW -- Archives:

client.path_info = cgi.path_info

2000-05-29 Thread Mark Ireland
As a way of tracking users (or just returning them to where they started) I have started to use cfset client.path_info = cgi.path_info Every page sets it except those that actually use it. It seems to work. . Is it unclever? Is there a better way?

RE: Buffering in ColdFusion.

2000-05-29 Thread Dave Watts
Is there a way in ColdFusion to present the browser with output as a page executes instead of waiting until the page has finished executing? In ASP this works by setting Response.Buffer = True Unfortunately, there is no analogous capability in CF; it's one of the few areas where CF doesn't

Re: Developer Conference: Hotel Accommodations

2000-05-29 Thread James Brown
Several people who went to the e-commerce meeting in Rockville a couple of months ago used priceline and got some pretty good deals on both flight and room ($80 a nite for the Rockville Marriot). For me priceline is just a little too much like gambling. I stayed in Gaithersburg at a Sleep Inn

RE: Tricky sorting riddle.

2000-05-29 Thread Stephen Hait
Have you tried: ... ORDER BY DateAdd(MONTH,lease_length,Since) ??? Good luck, Stephen Followup to my own message :-) Hi All, I am building a real-estate DB and I have stumbled over an interesting riddle: In this case I use the following fields in Access DB (tenants)

RE: SQL server error

2000-05-29 Thread Dave Watts
Can anyone tell me what may be causing the following error on NT4, SP5, CF4.01 SQL7.0 SP2, MDAC 2.5 installed on web server. Everything was working fine for the past month or so then this just started to appear today and no changes have been made. Here is thew error message ODBC Error

RE: cftree background color?

2000-05-29 Thread Dave Watts
I know that there is not an attribute for background color in the cftree tag, but I'd really like a way to modify it nonetheless. Does anyone know of a way around this limitation? One of the problems with the Java applets provided with CF is that you have to take them or leave them; you can't

Re: Using authenticated SMTP with CFMAIL

2000-05-29 Thread Howie Hamlin
iMS will support this in the near future (including POST SE). Details are at www.coolfusion.com Regards, Howie Hamlin -- inFusion Project Manager; On-Line Data Solutions, Inc. (631)737-4668 www.CoolFusion.com Please vote for iMS in

RE: SQL server error

2000-05-29 Thread Nick Slay
You may also want to try the DBCC CHECKIDENT (tablename) just to make sure there aren't any problems with Identity columns if you are using them. At 22:49 29/05/00 -0400, you wrote: Can anyone tell me what may be causing the following error on NT4, SP5, CF4.01 SQL7.0 SP2, MDAC 2.5

RE: [RE: Directory Structure Permissions]

2000-05-29 Thread Dave Watts
Thanks Dave. Is there any default setting in CF Administrator we should be aware of which may compromise security? No, not really. There are several security issues in setting CF up, though, which are pretty well documented in the Allaire knowledge base; IIS security issues can be found at the

RE: Buffering in ColdFusion.

2000-05-29 Thread stas
If we are talking about outputting a ton of records on the screen, then you can speed up a process somewhat if you are formatting them in a table: Instead of: table cfoutput query = "myquery" tr td#data#/td /tr /cfoutput /table you can do this: cfoutput query = "myquery" table tr

Re: Removing spaces

2000-05-29 Thread C
At 10:31 AM 5/30/00 +1000, you wrote: Try Replace(Form.Field, " ", "") Nick Hmm. Yeah, I get this in concept of using a CFOUTPUT.. ie, #replace(Form.Field," ","") however, I'm trying to get this all to execute in the form input command when it inserts records.. *shrug* I know I am missing

Re: Removing spaces

2000-05-29 Thread Nick Slay
gotcha... the answer then, is not so good! :^)Unless anyone knows better, I think that you'll have to use a CFQUERY to Insert the records rather than CFINSERT. That way you can do the Replace() on the field. hmmm... the only other thing you could try, and I'm not sure if this will work,

Re: Removing spaces

2000-05-29 Thread C
At 02:00 PM 5/30/00 +1000, you wrote: gotcha... the answer then, is not so good! :^)Unless anyone knows better, I think that you'll have to use a CFQUERY to Insert the records rather than CFINSERT. That way you can do the Replace() on the field. hmmm... the only other thing you could try,

Need Suggestion : About Uploading files

2000-05-29 Thread Phim
Hi , I am about new starting in Cold fusion and I have project development by Cold Fusion. My project need 1 page that can download files(picture file) from my computer to locate at server. Can you please give me suggesstion ,what object do I need to install at server ? Where the place that I

RE: DB Clientstorage and Hitcount and Performance

2000-05-29 Thread Dave Watts
What are the real performance issues with having global client variables enabled? If you're using a datasource to contain Client variables, then there's a query every time they're read or written. That's significant compared to using Session variables, especially if you're putting large

RE: Need Suggestion : About Uploading files

2000-05-29 Thread Leong Yew
Hi, I take it you're looking to transfer a file from your computer to the server? If this is the case there's no need to install any additional components. CF already has a built-in tag called CFFILE. All you have to do is write a forms page with the input-file html tag and send that to a CF

non breaking spaces in DateFormat()

2000-05-29 Thread Mark Ireland
Has anyone managed a version of DateFormat() that puts non-breaking spaces in the date output? I mean nbsp; Could I just do a replace()? -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

RE: Need Suggestion : About Uploading files

2000-05-29 Thread Phim
Thanks you very much :) I am in NT , so How i should do next. Phim. -Original Message- From: Leong Yew [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 30, 2000 12:05 PM To: [EMAIL PROTECTED] Subject: RE: Need Suggestion : About Uploading files Hi, I take it you're looking to transfer a