CFLoop timeout

2000-11-03 Thread Richard Brotherton Analyst Programmer IT CS
Hi, Is there a way of setting a timeout on a CFLoop? I have a form that contains a loop, which is waiting for a particular file to exist (last file in an FTP upload stream). Because the files that are being sent to the server via FTP vary in size, the wait time is never the same. Problem :-

RE: CFLoop timeout

2000-11-03 Thread DeVoil, Nick
Richard Why not do a GetTickCount() before the loop starts, then put an extra test in the WHILE or FOR part of the CFLOOP to check it again. If the CFLOOP isn't constructed as a WHILE or FOR loop then you can do the test inside the loop and use CFBREAK. Although as you say, looping like this

RE: padding a variable

2000-11-03 Thread Philip Arnold - ASP
how do you pad a variable in CF. for example how can I force a query.columnname to take up exactly 30 characters? Just using Left() won't work if you're using variable length fields (varchar) You could use Left(myColumn RepeatString(" ", 30), 30) HTH Philip Arnold ASP Multimedia Limited

Help building simply sql query expression

2000-11-03 Thread Paul Sinclair
I've been struggling with this off and on over the last couple days trying to figure out how to do some calculations on an MSAccess db. I've looked through all my sql books but haven't hit on the answer. It is very simple, but my knowledge of sql is just too limited I'm afraid. Basic table

RE: Help building simply sql query expression

2000-11-03 Thread Ben Forta
Try this: SELECT ABCName, COUNT(*) AS num FROM tblWinners WHERE Win = 'abc' GROUP BY ABCName -Original Message- From: Paul Sinclair [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 8:42 AM To: CF-Talk Subject: Help building simply sql query expression I've been struggling

Create Table SQL

2000-11-03 Thread ibtoad
I have 2 questions, I am writting an CREATE Table SQL statement for MS Access, How do I create the table to have a primary key? What statement do I use to create a date field with default Date()? Thanks, Rich

CFGRID and security

2000-11-03 Thread Stewart McGowan
Hi all, A corporate client is a little nervous about us using the CF Java applets, can anyone point me to some resources, or does anyone have any views about their use? Kind Regards Stewart

RE: Create Table SQL

2000-11-03 Thread Andy Ewings
To create a primary key create a unique clusted index after you have crated the table like so CREATE TABLE table name ( field1 int PRIMARY KEY CLUSTERED , field2 datetime DEFAULT GETDATE() , field3.. .. .. .. ) The other way is to creat the table and then create an

OT: Conference

2000-11-03 Thread Howie Hamlin
Maybe a stupid question - does anyone know if the curriculum chosen for the conference will be handed out at the registration or, if not, where we can get a copy on line? Thx, Howie Archives:

RE: Submitting Form with Javascript in Anchor

2000-11-03 Thread Colin Robinson
document.forms[index of the form 0 being the first].submit() or document.forms.form name.submit() But 'if your doing that way it's fine !!! :o) -Original Message- From: Joseph J. Sanger, M.D. [mailto:[EMAIL PROTECTED]] Sent: 03 November 2000 03:25 To: CF-Talk Subject: Submitting

RE: Need help on http Error 405

2000-11-03 Thread Chen, Yung-Chih (CIT)
hi, I have add enctype="multipart/form-data" cfform action="download.cfm/download.csv" method="POST" name="sform" enctype="multipart/form-data" onSubmit="return ck_submit();" onReset="clear_lists();" but I am still getting http Error 405 error, and suggestion YC -Original Message-

RE: Uploading Images

2000-11-03 Thread ibtoad
As far as I know they should go into a directory. Rich -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 9:26 AM To: CF-Talk Subject: Uploading Images Hi, I need to allow users to upload images. Will Access allow images to be dumped into the

RE: Create Table SQL

2000-11-03 Thread Andy Ewings
Sorry my last reply was confusing!.the example I gave was to create the default and the primary key at the same time as you create the tablenot afterwards as I suggested! If you want to do it afterwards here's how CREATE UNIQUE CLUSTERED INDEX PK_indexname ON tablename(fieldname) -

RE: Conference

2000-11-03 Thread Simon Horwith
you can go to allaire's site and follow the links to a page that asks for your username and password... from there you can print ot your schedule... I don't know if they're handing them out when you resign-in, or not. ~Simon -Original Message- From: Howie Hamlin [mailto:[EMAIL

RE: Create Table SQL

2000-11-03 Thread ibtoad
This isn't working for me and I can't figure out why. This works: auction_date DATE NOT NULL, however as soon as I ad the Default part auction_date DATE NOT NULL DEFAULT GETDATE(), I get errors. Any Ideas, Rich -Original Message- From: Andy Ewings [mailto:[EMAIL

RE: Help building simply sql query expression

2000-11-03 Thread Bob Silverberg
To get all of your answers in one result set, you can use UNION, like so: SELECT ABCName, COUNT(*) AS num,'abc' as WinType FROM tblWinners WHERE Win = 'abc' GROUP BY ABCName union all SELECT NOPName, COUNT(*) AS num,'nop' as WinType FROM tblWinners WHERE Win = 'nop' GROUP BY NOPName Bob

RE: Conference

2000-11-03 Thread Top-Link Tech (John Ceci)
Last year you could get a copy at the conference plus you could make changes if you wanted to, it was handled first rate in my opinion... John -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 8:25 AM To: CF-Talk Subject: OT: Conference

RE: Conference

2000-11-03 Thread Nathan Stanford
Here is a list of what is available: http://www.allaire.com/conference/conferenceprogramdetails.cfm They will give you a class schedule with you sign in on Sunday or Monday. Nathan www.cftipsplus.com -Original Message- From: Howie Hamlin [SMTP:[EMAIL PROTECTED]] Sent: Friday,

RE: Uploading Images

2000-11-03 Thread Bob Silverberg
Just my opinion, but I believe that your performance will be better if you store the images on disk, rather than putting them into the database. Bob -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 9:26 AM To: CF-Talk Subject: Uploading Images

RE: CFX_PRINTREPORT Problem.

2000-11-03 Thread Nardi, Gaston
Snif ! Nobody helps me with this ! Gaston. -Mensaje original- De: Nardi, Gaston Enviado el: Viernes 20 de Octubre de 2000 13:51 Para: CF-Talk (Correo electrónico) Asunto: CFX_PRINTREPORT Problem. Hi, I'm trying to use CFX_PRINTREPORT to print some Crystal Reports

TwoSelectsRelated question

2000-11-03 Thread W Luke
Hi, I've used TwoSelectsRelated tag before - but for some reason can't get it working on another section of my site. I have a table, locations, with "County" and "Town" - I've populated one of the select with counties, but the second isn't being populated. I think it's probably due to my

Re: Submitting form with Javascript

2000-11-03 Thread David Shadovitz
Brett, That's no problem. Add a hidden element to the form, with a name but no value. Set the appropriate value in each of the onclick handlers. The form's action page should then check the value of the hidden form element. input type="hidden" name="submitType" a href="#"

Re: Paranoid programming...

2000-11-03 Thread Larry W. Virden
Re: using CFX's (in any languagE) It was pointed out to me locally that the problem with doing things in the CFX is that any app could invoke the CFX, thus defeating the purpose of putting it into the CFX... The current hope is that whenever Advanced security becomes available for ColdFusion

RE: Paranoid programming...

2000-11-03 Thread Zachary Bedell
some level at which you trust your software hardware. If you can't trust your own code, It's not a matter of trusting code - it's a matter of not trusting hostile programmers... Then... I hate to say it, friend, but you really are screwed If there are individuals who meet the

RE: padding a variable

2000-11-03 Thread David Gassner
The LJustify() function is designed for exactly this purpose: LJustify(myColumn, 30) -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 5:23 AM To: CF-Talk Subject: RE: padding a variable how do you pad a variable in CF.

cfinsert

2000-11-03 Thread Jeremy Toevs
I was using the following query: cfquery name="AddUser" datasource="NOW" INSERT INTO Users (First,Last,Ride,Fav_Place) VALUES('#First#','#Last#','#Ride#','#Fav_Place#') /cfquery But it was giving me an error. None of the fields are numeric, they are all texted fields. But when I used the

Security hole in basic authorization... Solutions?

2000-11-03 Thread Jamie Jackson
Say I'm a developer, but not a not a SysAdmin. It is too easy for me to get an administrator's username/password like this, using Win2k basic authorization: Hey, administrator, I'm troubleshooting a template, would you see if the test passes?: htmlbody Test Passed! Thanks, for checking,

Re: Strange Access Problem

2000-11-03 Thread Christopher S Martin
Sure. Here you go. It looks okay to me, but i may be missing something blindingly obvious. cfquery name="qcfInsertWebpageNames" datasource="FSLibraryManagement" INSERT INTO tblWebpageTest(WebpageName, Website, Directory); VALUES ('#FileList.Name#', #form.Website#, '#form.PageLocation#');

RE: Submitting form with Javascript

2000-11-03 Thread Doyle, Mike
Brett, If I read your email correctly, then you can alter the action of your three javasript-fired links two ways. First, you could fire different JS functions, located in the head of your template, according to the link like this: a href="javascript:addFunction();"Add/a a

Re: [RE: padding a variable]

2000-11-03 Thread Alex
how do i get it to show 30 characters without the browser truncating spaces "Philip Arnold - ASP" [EMAIL PROTECTED] wrote: how do you pad a variable in CF. for example how can I force a query.columnname to take up exactly 30 characters? Just using Left() won't work if you're using variable

Re: Create Table SQL

2000-11-03 Thread Joseph Thompson
In Access setting type to "counter" works as an autonumber as well CREATE TABLE People( ID COUNTER, First Char(50) not null, Last Char(50) not null ) Archives:

RE: Create Table SQL

2000-11-03 Thread Andy Ewings
Are you using SQL Server?if so neither will work as Date is not a valid type. Replace it with Datetime and it'll work -- Andrew Ewings Project Manager Thoughtbubble Ltd http://www.thoughtbubble.net

RE: Create Table SQL

2000-11-03 Thread Andy Ewings
Sorry...didn't read your initial mail properly. If you are using access you are quite right to use Date. Replace the function GETDATE() with NOW() for the default and see what happens -- Andrew Ewings Project Manager

Re: Submitting form with Javascript

2000-11-03 Thread Craig Bowes
I'm not sure I understand. Are you using form buttons or images as form butons or just plain images as links. Are you saying that on the next page it doesn't give the submit value of which button the user clicked? -Craig Bowes Coldfusion Programmer [EMAIL PROTECTED] 972.243.1171 -

RE: Create Table SQL

2000-11-03 Thread ibtoad
This is a multi-part message in MIME format. --=_NextPart_000__01C0458B.5EE2DAB0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit OK here is what I have so far: CREATE Table #userid# ( ID TEXT(40) NOT NULL PRIMARY KEY, userid

RE: Create Table SQL

2000-11-03 Thread Bob Silverberg
This is just a stab in the dark, but that SQL looks an awful lot like the SQL you use in SQL Server. Does it also work in Access (which Rich is using) or is there an alternate syntax? Bob -Original Message- From: ibtoad [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 9:55 AM

RE: Conference

2000-11-03 Thread Philip Arnold - ASP
you can go to allaire's site and follow the links to a page that asks for your username and password... from there you can print ot your schedule... I don't know if they're handing them out when you resign-in, or not. Where abouts on the site is this? I've been to just about every one of

Re: TwoSelectsRelated question

2000-11-03 Thread W Luke
Update: I swapped a few things round, and have got it working somehow. Yet, for some unknown reason, when I choose something from the second list and click submit it's not submitting what I asked it to. I clicked on "Reading," and it submitted "Windsor." Why's that happening!? Thanks Will

removing character from a variable

2000-11-03 Thread Brian bouldernet
I'm trying to take a variable item1 and remove the first 10 characters... Should I get the length subtract 11 and go right of that? -Brian Archives:

RE: Submitting form with Javascript

2000-11-03 Thread David Gassner
Add a hidden field to the form; have each of the links set the value of the field to something you can check from within the action page. -Original Message- From: Brett Payne-Rhodes [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 6:29 AM To: CF-Talk Subject: Re:

stripping all white space, CR, Tab and put into one line

2000-11-03 Thread thanh nguyen
hello everyone, I have a textarea box asking user to type in and, sometimes user types carriage return, tab, new line, then I insert it into sql server, when I retrieve the information and want to write it into a text file. sometimes if the user did not hit any return key or tab, so i write

RE: Submitting form with Javascript

2000-11-03 Thread CAlvarado
I prefer to do it using this function rather than submitting the entire form to the action stated in the form tag. Mainly because I may have multiple submits per pages submitting to various pages function FunctionName() { document.forms[0].action="SomeFile.cfm";

RE: Unicode in CF

2000-11-03 Thread Mark Johnson
Lou, We have done this. www.unboundbible.org many of the bible translations are in unicode format. Chinese, Korean, Japanese, etc. Backend is SQL Server 7.0. The text is stored in the db in UTF8 everything has worked great. A couple of issues: JavaScript doesn't handle UTF8 so if you are

RE: Uploading Images

2000-11-03 Thread Jaime Garza
Security problems: Probably you are not at the point yet, but imagine that you upload an image to a server. It has to go into a directory that can be reached via http so that it can be displayed, right? In some sites they let you do that. Now, just imagine a user uploads a cfm or a pl file

RE: padding a variable

2000-11-03 Thread Chapman, Katrina
That's not the queston boys. He's not asking how to limit it to 30 but how to force it up to 30. IE I have a string that's only 22 chars long I need it to be thirty. Try this CFSET foo = "my string less than 30" CFOUTPUT #foo# - #len(foo)# /CFOUTPUT BR CFIF Len(foo) GTe 30 CFSET foo =

Re: [RE: padding a variable] nbsp;

2000-11-03 Thread Alex
spaces get truncated. that is my problem "David Gassner" [EMAIL PROTECTED] wrote: The LJustify() function is designed for exactly this purpose: LJustify(myColumn, 30) -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 5:23 AM To:

can CF figure out user platform??

2000-11-03 Thread S R
Hi, I have a problem with some of my pages 'font sizes' appearing differently across platforms. For example a 'font size' of 1 on a windows machine is unreadable on a linux machine. I was thinking if when this problem page is loaded it could figure out what platform the user has and I can

RE: Need help on http Error 405

2000-11-03 Thread David Gassner
Error 405 means that IIS doesn't understand the requests's file extension and can't properly dispatch it to the ColdFusion server. Your action attribute implies a file extension ".cfm/download.csv" which is meaningless to the web server. If you want the user to be able to download a file called

OT: Security issue

2000-11-03 Thread Brian L. Wolfsohn
Last night, one of our machines was "hacked".. we're looking into how, but what we've been able to discover so far, is that the I_USE and I_WAM accounts were locked out, so all the websites were, in effect, useless at that point. It was explained to me that the I_USE and I_WAM accounts could

RE: [RE: padding a variable]

2000-11-03 Thread Hayes, David
To do that, you'll have to replace the spaces with "nbsp;" to generate non-breaking spaces for the browser. -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 10:24 AM To: CF-Talk Subject: Re: [RE: padding a variable] how do i get it to show 30

RE: cfinsert

2000-11-03 Thread David Gassner
You might be having problems field names using SQL reserved words. Try enclosing all the field names in brackets: cfquery name="AddUser" datasource="NOW" INSERT INTO Users ([First],[Last],Ride,Fav_Place) VALUES('#First#','#Last#','#Ride#','#Fav_Place#') /cfquery -Original Message-

RE: CF Server log error???

2000-11-03 Thread Hoffman, Joe (CIT)
From the command line: net helpmsg 109 The pipe has been ended. Or should be in the resource kit. Joe Hoffman mailto:[EMAIL PROTECTED] National Institutes of Health Center for Information Technology Division of Computer System Services -Original Message- From: [EMAIL PROTECTED]

RE: Create Table SQL

2000-11-03 Thread ibtoad
OK here is what I have so far: CREATE Table #userid# ( ID TEXT(40) NOT NULL PRIMARY KEY, userid TEXT(40) NOT NULL, category TEXT(10) NOT NULL, quant TEXT(10) NOT NULL, startprice TEXT(10) NOT NULL, duration TEXT(2) NOT NULL, auction_id TEXT(25)

Re: Drop down List

2000-11-03 Thread monika kon
--0-2049339050-973275290=:67150 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi James and Vaughan Evans! Thanks a lot for ur reply. I am now stuck in the query.Please help me.I am sending the code as well as the database in excel as an attachment.I have placed

RE: Create Table SQL

2000-11-03 Thread Andy Ewings
1) Try using counter as the datatype for the field you want to be autonumber 2) Puzzling meI'll have a think!! -- Andrew Ewings Project Manager Thoughtbubble Ltd http://www.thoughtbubble.net

WOO HOO =)

2000-11-03 Thread William J Wheatley
Ok i'm happy i just passed my Certification test. So i wanted to celebrate, and thanks to everyone who has helped me with problems in the past i appreciate it =) Bill Wheatley Director of Development AEPS INC Allaire ColdFusion Consulting Partner Allaire Certified ColdFusion Developer

RE: [RE: padding a variable]

2000-11-03 Thread David Gassner
Use a non-breaking space: cfset padding=RepeatString( "nbsp;", 30 - Len(myColumn) ) #myColumn##padding# -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 8:24 AM To: CF-Talk Subject: Re: [RE: padding a variable] how do i get it to show 30

cfselect difficulties with javascript overtones

2000-11-03 Thread t nelson
Hi everybody, I am looking for a little help right now. I am trying to make a dynamically populated drop down box, of options, so that a user can search for items a little bit easier. right now they have to scroll through each record, 25 at a time, until they get to the category they want.

RE: cfinsert

2000-11-03 Thread Bob Silverberg
What is the text of the error message? As CFINSERT just inserts whatever fields are passed to it, my guess is that one of '#First#','#Last#','#Ride#','#Fav_Place#' is not being passed to the template. Bob -Original Message- From: Jeremy Toevs [mailto:[EMAIL PROTECTED]] Sent: November 3,

RE: Create Table SQL

2000-11-03 Thread ibtoad
I am using Access 2000. If I manually go into the database I can set the Default to Date() and it will work however when I try to set it up from the SQL statement, I get errors. Rich -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 11:32 AM

Re: Security hole in basic authorization... Solutions?

2000-11-03 Thread Ken Wilson
You could start by hiring a more intelligent Sys Admin. :) Ken - Original Message - From: "Jamie Jackson" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, November 03, 2000 11:21 AM Subject: Security hole in basic authorization... Solutions? Say I'm a developer, but

RE: cfinsert

2000-11-03 Thread Sandra Clark
What was the error you were given? -Original Message- From: Jeremy Toevs [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 8:14 AM To: CF-Talk Subject: cfinsert I was using the following query: cfquery name="AddUser" datasource="NOW" INSERT INTO Users

Re: cfinsert

2000-11-03 Thread Jamie Jackson
How's about cutting and pasting the error, along with the debug outputted query. J On Fri, 03 Nov 2000 08:13:45 -0800, in cf-talk you wrote: I was using the following query: cfquery name="AddUser" datasource="NOW" INSERT INTO Users (First,Last,Ride,Fav_Place)

Batch updates

2000-11-03 Thread Bosky, Dave
I'm trying to display a group of records and give the user the abililty to update any or all of the fields of each record upon clicking the update button. I have them displaying inside a form. Thanks Dave

radius server

2000-11-03 Thread Dirk De Bock
Is anyone interfacing CF with a radius server for authentication? I am aware of the cfx_radauth tag by [EMAIL PROTECTED] but I could not get it to work properly with RadiusNT. Archives:

Re: CFX

2000-11-03 Thread Billy Cravens
Registering it in the CF Administrator should suffice; what kind of functionality isn't working? Errors for the most part vary by tag. -- Billy Cravens [EMAIL PROTECTED] Neil Clark wrote: I have a new CFX tag and to be honest have not played around with them much other than development -

Decrypt()

2000-11-03 Thread Billy Cravens
I'm trying to run a routine to decrypt a record in a table. All records were encrypted using Encrypt(), with a routine encryption key: cfset EncryptedText = Encrypt(String,EncryptionKey) However, some of the encrypted passwords cause this error to appear: ---BEGIN ERROR--- An unexpected

Re: padding a variable

2000-11-03 Thread Billy Cravens
cfset myvariable = myvariable RepeatString(" ",(30 - Len(myvariable))) -- Billy Cravens [EMAIL PROTECTED] Alex wrote: how do you pad a variable in CF. for example how can I force a query.columnname to take up exactly 30 characters?

Re: Action Pages or Coding the Page in Action Attribute of form tag

2000-11-03 Thread Peter Theobald
I think Fusebox may address this problem, since Fusebox always has a form display and form action (and everything else) go through the same page, index.cfm. Any Fusebox experts want to comment on how to avoid the problem of hitting 'BACK' resubmits your form instead of displaying the blank

RE: removing character from a variable

2000-11-03 Thread Dylan Bromby
you could: 1) get the length 2) subtract 10 3) get the rightmost chars according to the value from step 2. -Original Message- From: Brian bouldernet [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 9:17 AM To: CF-Talk Subject: removing character from a variable I'm trying

Re: cfinsert

2000-11-03 Thread [EMAIL PROTECTED]
Don't know what database you are using but I would try the following: 1.Include "form." in the variable name to assure there is no name conflict. 2.Test for empty strings. I have found in some db's there is inconsistant behavior where an empty field will cause a problem in some cases

RE: padding a variable

2000-11-03 Thread Chris Evans
Or, CFSET Padding=RepeatString("nbsp;",30") CFSET PaddedString=Left(MyString Padding,"30") Chris Evans [EMAIL PROTECTED] http://www.fuseware.com -Original Message- From: Chapman, Katrina [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 12:54 PM To: CF-Talk Subject: RE:

fusebox

2000-11-03 Thread CAlvarado
Is anyone out there using the fusebox methodology? I have recently started this position here and I am the Cold Fusion lead and I was toying with the idea of recommending that we use the Fusebox method for the complete REdeployment of our corporate Intranet. any feedback is well appreciated.

Re: removing character from a variable

2000-11-03 Thread Joseph Thompson
I'm trying to take a variable item1 and remove the first 10 characters... #RemoveChars(OriginalString,1,10)# Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

RE: [RE: padding a variable]

2000-11-03 Thread Simon Horwith
or add x number of #Chr(32)# 's to the value (#chr(32)# is the ASCII value for a space) depends on your needs ~Simon -Original Message- From: Hayes, David [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 1:06 PM To: CF-Talk Subject: RE: [RE: padding a variable] To do

RE: Strange Access Problem

2000-11-03 Thread Christopher Olive, CIO
you don't use a where clause for an insert. if you're trying to just do an insert, you need to put apostrophes around your #FORM.website# value. if you're doing an update, change your statement to UPDATE tblWebpageTest SET WebpageName = '#FileList.Name#', Website =

RE: Need help on http Error 405

2000-11-03 Thread Chen, Yung-Chih (CIT)
thank you for suggestion, but why this code cfform action="download.cfm/download.csv" method="POST" name="sform" works on Netscape webserver, but does not work on IIS when user click submit it will let use save that file as download.csv! YC -Original Message- From: David Gassner

Need to find a good scheduler for NT

2000-11-03 Thread Chen, Yung-Chih (CIT)
Hi, can anyone suggest good scheduler for NT? I am looking for a scheduler programe that will install as service on NT(also can be login as different domain user), so it will run any tasks without user login into NT. Thanks! YC

Re: [RE: padding a variable]

2000-11-03 Thread Alex
i can do this BUT not with spaces [nbsp;] how can i get a query field that takes up 10 or less characters to take up exactly 30 characters in the browser? "Chapman, Katrina" [EMAIL PROTECTED] wrote: That's not the queston boys. He's not asking how to limit it to 30 but how to force it up to

RE: padding a variable

2000-11-03 Thread Mark Johnson
Here is a way to do it with less steps. CFSET padlegth = 30 - Len(foo) CFSET paddedfoo = foo RepeatString("nbsp;",padlegth) Mark Johnson --- Senior Cold Fusion Developer Cardinal Communications -Original Message- From: Chapman, Katrina [mailto:[EMAIL PROTECTED]]

CF Administrator

2000-11-03 Thread Simon Horwith
Happy Friday, Everyone. I'm polling everyone (informally) via e-mail, to get your opinions about the ColdFusion Administrator interface and/or functionality. Specifically, I'd like to know what you like about it, what sections you use most and least, what you dislike about it, and WHAT

cfcontent not working properly with IE on a MAC

2000-11-03 Thread Joel Richards
I am using cfcontent to allow a user to download graphics file to their hard drive(mainly tiff and eps files). The script works great with IE and Netscape on a PC and also works on a MAC with Netscape. However, When using IE with a mac, the file is downloaded to the browser. Any ideas on how

RE: stripping all white space, CR, Tab and put into one line

2000-11-03 Thread Mark Johnson
This will remove all returns and tabs with nothing. ReReplace(string,"(#chr13#|#chr9#)","","ALL") Mark Johnson --- Senior Cold Fusion Developer Cardinal Communications -Original Message- From: thanh nguyen [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000

RE: [RE: padding a variable] nbsp;

2000-11-03 Thread Mark Johnson
Using this function another way would be. ReReplace(LJustify(myColumn, 30)," ","nbsp;","ALL") Mark Johnson --- Senior Cold Fusion Developer Cardinal Communications -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 5:58 PM To:

RE: Create Table SQL

2000-11-03 Thread Hoffman, Joe (CIT)
1) The Primary Key is not set to auto number, how can I set this? Should I be using something in place of TEXT(40) I tried using AutoNumber but that returned errors. CREATE Table #userid# ( ID COUNTER CONSTRAINT ID PRIMARY KEY, userid TEXT(40) NOT NULL, category

Have A Great Weekend...

2000-11-03 Thread Simon Horwith
I look forward to meeting as many of you as possible at the developers conference (Sun. - Wed.). I'll be at the figleaf booth 3-5 Sunday (and other times randomly) and will be at the Special Interest Group meeting: "Best of CFUG" on Monday from 6:30 - 7:30 (THE Steven Drucker will be

RE: Security issue

2000-11-03 Thread mherbene
I don't know about the best way, but one way to make this hard to do would be to create new accounts to do the jobs of I_USE and I_WAM. Only someone who knows the names would then be able to carry out this attack. There's also no reason the NT name of your machine (as part of the I_USE name)

RE: Create Table SQL

2000-11-03 Thread ibtoad
I solved the problem by using: cfset auction_date="#DateFormat("#Now()#")#" on the form page and then put '#auction_date#' in the insert statement. However, I have another question now. How can I create an SQL statement that will create a directory so my users can upload to their own

Re: padding a variable

2000-11-03 Thread Tom Muck
To add to this, you'll probably need to use chr(160) (or "nbsp;") because spaces will be ignored by the browser. tom - Original Message - From: "Chapman, Katrina" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, November 03, 2000 12:53 PM Subject: RE: padding a variable

RE: can CF figure out user platform??

2000-11-03 Thread Hoffman, Joe (CIT)
#CGI.HTTP_USER_AGENT# Joe Hoffman mailto:[EMAIL PROTECTED] National Institutes of Health Center for Information Technology Division of Computer System Services -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 1:05 PM To: CF-Talk Subject: can CF

Cold Fusion rendering time

2000-11-03 Thread Yanik Lupien
Hi, I have Cold Fusion 4.5 server on a Dual PIII 550 with 512 Mb of ram and a SQL server 7.00 on a single PIII 550, and with this configuration I deserve over 20,000 Unique visitors per day. My server can render aprox 1200 Pages (35 Mb of data) per 5 minutes. 4 Pages by seconde... My best top

cfcontent and macs

2000-11-03 Thread Emmet McGovern
Im trying to use cfcontent to trigger a file download and write a download count to a database. Works great on pc but fails on a mac. Anyone know the solution to this? Or a way that will work on a mac. The mac spits out an attempt to load page error. CFQUERY NAME="GetFileInfo"

RE: Dynamic Variable Names in a CFSET

2000-11-03 Thread Kedar Desai
This code works: cfset "choice#count#" = blah -Original Message- From: David Shadovitz [mailto:[EMAIL PROTECTED]] Sent: Friday, November 03, 2000 12:39 AM To: CF-Talk Subject: Re: Dynamic Variable Names in a CFSET cfset tmp = SetVariable("choice#count#", blah) -David On Thu, 2 Nov

RE: Decrypt()

2000-11-03 Thread Eron Cohen
Hi Billy, I have found that encrypt can create some values that the database will choke on. You may need to enlist the help of base64 encoding. You're going to need to use the functions tostring(),tobinary(), and tobase64() for your encryption/decryption process. For instance, to encrypt a

Re: Action Pages or Coding the Page in Action Attribute of form tag

2000-11-03 Thread Craig Bowes
Fusebox does indeed fix this. I used to have the same problem before I started using it. After hitting the submit, the page should go to a fuseaction such as "updateuser" or whatever which might have code in the "index.cfm" such as: CFCASE value="insertuser" CFINCLUDE

cfhttp url resolving for image maps?

2000-11-03 Thread Jacob Ezzell
This is a multi-part message in MIME format. --=_NextPart_000_0009_01C045B3.45D7B180 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable cfhttp resolveurl=3D"yes" does not appear to resolve the urls for = clickable imagemaps. the area tag href

Re: fusebox

2000-11-03 Thread Craig Bowes
Yes! Fusebox rocks. It has made my code smaller, more manageable, more reuseable and easier to understand while being loose enough to let me do whatever I need to get the job done. I HIGHLY recommend fusebox to any CFDeveloper. It is based on Object Oriented Concepts that standard desktop

Re: fusebox

2000-11-03 Thread Stephen M. Aylor
go to house of fusion www.houseoffusion.com and sign up for the fusebox list.. its been busy lately :-) Steve - Original Message - From: [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, November 03, 2000 12:53 PM Subject: fusebox Is anyone out there using the fusebox

RE: Help building simply sql query expression

2000-11-03 Thread Kedar Desai
This works: SELECT ABCName, '' ,Count(win) as num from tblWinners where win = 'abc' group by ABCName UNION SELECT '' , NOPName, Count(win) as num from tblWinners where win = 'nop' group by NOPName Note that caty - o will not appear in the above union. To get caty - 0 in the you will need to

What is the best source?(please help!)

2000-11-03 Thread bajaria aslam
I am planning to host the web site locally. I have to do everything myself. I want to learn how to host a web site from scratch. Please help. thanks. Mirza --- Gavin Myers [EMAIL PROTECTED] wrote: Are you going to have it hosted locally or through a web hosting company? -Original

  1   2   >