Re: Pulling email

2001-06-10 Thread Dain Anderson
Howie, Oops. It should work now :-) Thanks, Dain Anderson Caretaker, CF Comet http://www.cfcomet.com/ - Original Message - From: Howie Hamlin [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, June 10, 2001 1:50 AM Subject: Re: Pulling email Your link doesn't seem to

Re: CFgraph on O'Reilly Website 3

2001-06-10 Thread Jim Watkins
Ann, I copied/pasted your code and results are at: http://www.ngtcollege.org/graphexam.cfm see what I mean. Jim - Original Message - From: Ann Harrell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, June 09, 2001 8:27 PM Subject: RE: CFgraph on O'Reilly Website 3

Re: CFgraph on O'Reilly Website 3

2001-06-10 Thread Jim Watkins
I have looked at all the log files displayed in CF 5 Administrator page. No clues. Don't have a generator.log file that I can find. - Original Message - From: Deb Dickerson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, June 09, 2001 1:51 PM Subject: RE: CFgraph on

White Space

2001-06-10 Thread Jerry Staple
Hi Could anyone tell me the Best way to strip out white space from a string?? Much Appreciated Jerry Staple Web Applications Developer Biznet Solutions 133 - 137 Lisburn Road Belfast BT9 7AG www.biznet-solutions.com [EMAIL PROTECTED] Tel: +44 (0)28 90205652 Fax: +44 (0)28 9022 3223

RE: list and looping problems

2001-06-10 Thread David Shadovitz
Seamus, Option #1: Simply delete everything in the database and then add everything in the new group list. No need for updates. You can get away with this because the new group list contains all of the fields (i.e. 2) in the database table, if I read you right. Option #2: Remove items

Re: White Space

2001-06-10 Thread Dick Applebaum
cfset string = ReReplace(String, +, , All) HTH Dick At 10:15 AM +0100 6/10/01, Jerry Staple wrote: Hi Could anyone tell me the Best way to strip out white space from a string?? Much Appreciated Jerry Staple ~~ Structure your ColdFusion code

Re: White Space

2001-06-10 Thread Dick Applebaum
Oops, you said white space, not space! try cfset White = #Chr(9)##Chr(10)##Chr(13)##Chr(32)# cfset string = ReReplace(String, [#White#]+, , All) cfset string = ReReplace(String, +, , All) HTH Dick At 10:15 AM +0100 6/10/01, Jerry Staple wrote: Hi Could anyone tell me the Best way to

Re: White Space

2001-06-10 Thread Joseph Thompson
The RE command set provides for a Space operator that should match tabs, newlines, etc... maybe: cfset string = ReReplace(String, [space], , All) Oops, you said white space, not space! try cfset White = #Chr(9)##Chr(10)##Chr(13)##Chr(32)# cfset string = ReReplace(String, [#White#]+, ,

RE: White Space

2001-06-10 Thread Jerry Staple
Hi Dick Ive tried the following code but to no avail: cfset White = #Chr(9)##Chr(10)##Chr(13)##Chr(32)# cfset Questions = ReReplace(#OutputList.Question#, [#White#]+, , All) td height=10 width=25% background=white-rect.gif div align=centerfont face=Arial, Helvetica, sans-serif

RE: White Space

2001-06-10 Thread Jerry Staple
Hi Dick Ive tried the following code but to no avail: cfset White = #Chr(9)##Chr(10)##Chr(13)##Chr(32)# cfset Questions = ReReplace(#OutputList.Question#, [#White#]+, , All) td height=10 width=25% background=white-rect.gif div align=centerfont face=Arial, Helvetica, sans-serif

RE: White Space

2001-06-10 Thread Dick Applebaum
Try cfset White = #Chr(9)##Chr(10)##Chr(11)##Chr(12)##Chr(13)# cfset Questions = ReReplace(#OutputList.Question#, [ #white#]*, ,All) This will remove all spaces and white space. Better for db insertion would be: cfset Questions = ReReplaceNoCase(#OutputList.Question#, [^0-9A-Z_]*, ,All)

RE: list and looping problems

2001-06-10 Thread Seamus Campbell
many thanks - (I actually have three tables to amend two of which have more than 2 fields). I ended up doing this: added three yes/no fields - one for update, one for insert, and one to say whether or not to show the entry set all entries to No before an update/insert then if an update set the

RE: White Space

2001-06-10 Thread Jerry Staple
Dick Thats Just The Ticket! Thanks Very Much All the Best Jerry -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED]] Sent: 10 June 2001 12:35 To: CF-Talk Subject: RE: White Space Try cfset White = #Chr(9)##Chr(10)##Chr(11)##Chr(12)##Chr(13)# cfset Questions =

Re: Pulling email

2001-06-10 Thread Howie Hamlin
Yep, it does. Thanks, Howie - Original Message - From: Dain Anderson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, June 10, 2001 2:36 AM Subject: Re: Pulling email Howie, Oops. It should work now :-) Thanks, Dain Anderson Caretaker, CF Comet

Can this be done? Flashy way??

2001-06-10 Thread Michael Lugassy
I'm trying to build a similiar mechanisem to Oddcast photomixer. they use a very nice flash application that edit and run clips on the fly. they supply a thumbnailed directory of images, cool list of songs and a series of transitions between frames. I'm intrested in building such an engine, I

simple flash procedure

2001-06-10 Thread Michael Lugassy
I'm trying to do a simlpe flash procedure now with Coldfusion ( I don't know flash at all!) that will get a list of images (jpgs) I have locally on the hdd, a song I also have on the server (in which format should I store it?) and the flash object will randomly change images while playing.

Re: simple flash procedure

2001-06-10 Thread Seth Turetsky
To the best of my knowledge, I don't think Flash can work dynamically like that, since typically images and sounds have to be imported into Flash and placed into the timeline before it is exported as a swf file(which is what browsers can play). Maybe Generator can do something like that? Seth

Re: Can this be done? Flashy way??

2001-06-10 Thread Steve Reich
if someone can point out on where I can find CF TAGS to build FLASH stuff (I don't know FLASH AT ALL!) I'll be happy! How about the CF_BuildFlashMovie tag? You just enter what you want the application to do and pass it your experience level with Flash and it will spit out a movie file and code

Re: CF5, cffile and cfcontent and deleting

2001-06-10 Thread Michael A. Cady
Hi Rich, Windows NT Error 5 means that access to the file is denied because some other process is using it. My guess in your case is that your process that serves up the CFCONTENT is the one that has the file open, therefore your line of code which attempts to delete it can't because it is

OT: setup HTTPS on local PC

2001-06-10 Thread SRetsky
--part1_dd.15d06787.28551ce9_boundary Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hi: I have https working fine on my web site, but I can't get it to run on my local PC where I do development and testing. When I try it now on my PC (https://testsite1/test1.cfm),

RE: setup HTTPS on local PC

2001-06-10 Thread Duane Boudreau
To get the https protocal working locally you have to install an ssl key on your machine Duane -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 10, 2001 2:57 PM To: CF-Talk Subject: OT: setup HTTPS on local PC

CFCONTENT Problem

2001-06-10 Thread Rich Z
I'm sure this problem has been addressed before, but here it is: I'm trying to make a file available for download through CFCONTENT. The cfm page send.cfm looks like this:: cfcontent type=unknown file=c:\archive\file.mp3 deletefile=No The problem is, instead of sending that file, it sends

RE: CFCONTENT Problem

2001-06-10 Thread Duane Boudreau
If you are using NT with SP 6a: add this to send.cfm cfheader name=Content-Disposition value=attachment; Filename=myfile.txt -Original Message- From: Rich Z [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 10, 2001 4:17 PM To: CF-Talk Subject: CFCONTENT Problem I'm sure this

Re: CFCONTENT Problem

2001-06-10 Thread Dain Anderson
Give this a shot: CFHEADER NAME=Content-Disposition VALUE=attachment; filename=file.mp3 CFCONTENT TYPE=unknown FILE=c:\archive\file.mp3 DELETEFILE=No Dain Anderson Caretaker, CF Comet http://www.cfcomet.com/ - Original Message - From: Rich Z [EMAIL PROTECTED] To: CF-Talk [EMAIL

CFTree form submittal

2001-06-10 Thread Aaron Rouse
How can a form be submitted via JavaScript when there is a CFTree in that form and you are selecting nothing from that CFTree? I simple document.frm.submit(); does not work with Netscape, when you get to the posting screen you get a Error resolving parameter TREE.

ClickBank

2001-06-10 Thread Alii Design
Does anyone have any experience with integrating Clickbank into a CF app? I haven't seen any examples or tags in the dev gallery. Rich -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 10, 2001 4:46 PM To: CF-Talk Subject: CFTree form submittal How can

RE: Alter table

2001-06-10 Thread Mark Warrick
From the SQL documentation: ALTER TABLE (T-SQL) Modifies a table definition by altering, adding or dropping columns and constraints, or by disabling or enabling constraints and triggers. Syntax ALTER TABLE table {[ALTER COLUMN column_name {new_data_type [ (precision[, scale] ) ]

RE: CF 5 Cfgraph question

2001-06-10 Thread Michael Bruce
Yes Pretty cool to. Use the URL and the URLcolumn attributes -Original Message- From: Stephen Hait [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 09, 2001 2:14 PM To: CF-Talk Subject: CF 5 Cfgraph question Does CFGraph provide the ability to create drill-down Flash graphs similar to

RE: CFCONTENT Problem

2001-06-10 Thread Rich Z
Still happening. Is there something I need to do on the server side? -Original Message- From: Dain Anderson [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 10, 2001 4:38 PM To: CF-Talk Subject: Re: CFCONTENT Problem Give this a shot: CFHEADER NAME=Content-Disposition VALUE=attachment;

RE: CFCONTENT Problem

2001-06-10 Thread Duane Boudreau
What is the WinNT SP? Duane -Original Message- From: Rich Z [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 10, 2001 8:50 PM To: CF-Talk Subject: RE: CFCONTENT Problem Still happening. Is there something I need to do on the server side? -Original Message- From: Dain

Re: CFSTOREDPROC and performance question

2001-06-10 Thread Jon Hall
How about using BCP? cfquery name=InsertInitial DATASOURCE=#DSN# USERNAME=#user# PASSWORD=#pass# BULK INSERT Table FROM 'D:\FR\FileResource\101-200.csv' WITH ( FIELDTERMINATOR=',', ROWTERMINATOR=' ' ) /cfquery http://msdn.microsoft.com/library/default.asp?URL=/library/psdk/sql/ts_ba-bz_4fec.htm

OT: Possible virus warning

2001-06-10 Thread Zac
I received a very suspicious email from Pablo Varando [EMAIL PROTECTED] in response to one of my posts. The message has an attachment (hamster.zip.scr) that appears to be some sort of virus. My email to Pablo asking for an explanation of this has gone unanswered so I thought, just to be safe,

RE: CFCONTENT Problem

2001-06-10 Thread Rich Z
I'm actually using Windows 2000 Server. -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 10, 2001 8:58 PM To: CF-Talk Subject: RE: CFCONTENT Problem What is the WinNT SP? Duane -Original Message- From: Rich Z [mailto:[EMAIL PROTECTED]]

Re: CFSTOREDPROC and performance question

2001-06-10 Thread Aaron Rouse
Or DTS and you could schedule a Job to execute it whenever. Could even use DTS and then execute the package via a cfquery that is executed via a cfschedule, but I would just keep it on the SQL Server side. Snipe - CF_BotMaster Network=EFNet Channel=ColdFusion - Original Message - From:

RE: setup HTTPS on local PC

2001-06-10 Thread Dan Phillips
Also make sure the certificate is not installed on the same network as your local computer. I found out the hard way that this will cause a cert not to work. Dan Phillips www.cfxhosting.com -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 10, 2001

Re: CFForms javaScript was Complimentary skill

2001-06-10 Thread Kay Smoljak
On Sat, 09 Jun 2001 13:23:23 -0700, Zac [EMAIL PROTECTED] wrote: Does anyone have a link to a discussion of this? I've seen this being mentioned before and would be interested in any info about it. An interesting discussion of this: http://www.cftipsplus.com/ HTH, K. Archives:

Re: CFForms javaScript was Complimentary skill

2001-06-10 Thread Zac
On Sunday, June 10, 2001, at 09:54 PM, Kay Smoljak wrote: An interesting discussion of this: http://www.cftipsplus.com/ Would you happen to have a URL to it? I couldn't find anything like an archive listing or even a search button on the site. -- How do you spell relief? C8 H10 N4 O2