Re: Mailing Shots in CF

2001-03-05 Thread Jon Hall
Dont use CF for this. There are quite a few programs out there specifically for this purpose. There are even ones that will take an Access database with email addresses in it and send your email to them. jon - Original Message - From: "W Luke" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL

Re: M$ licensing has me at wits end

2001-03-05 Thread Jon Hall
Since Howie mentioned Interbase a few weeks back, I have looked at it quite a bit and I believe with the 1.0 release of the open source Firebird very close, I would include it in any list with MySQL and PostgreSQL. http://www.interbase2000.com/ jon - Original Message - From: "Arden

Re: com wddx

2001-03-05 Thread Richard Meredith-Hardy
Thanks everyone I've got it working... (at last!) Marcello Frutig wrote: Richard, below you'll find a VBA code that uses the component AspTear to post a WDDX packet. You cand find AspTear here: http://www.alphasierrapapa.com/ComponentCenter/AspTear Hope this helps! Regards,

RE: DHTML

2001-03-05 Thread DeVoil, Nick
OK, then just be aware that DHTML that works on N4 doesn't work on N6 or IE5 without tweaking. As the others have said, there's no CF problem. Nick -Original Message- From: James Taavon [mailto:[EMAIL PROTECTED]] Sent: Friday, March 02, 2001 6:27 PM To: CF-Talk Subject: Re: DHTML We

RE: Change the color scheme of scrollbars or gradient filled scro ll bar's

2001-03-05 Thread Thomas Chiverton
You can set it in IE5 with some javascript / CSS, but I cant remember the property name... -Original Message- From: Michael [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 03, 2001 4:48 PM To: CF-Talk Subject: Re: Change the color scheme of scrollbars or gradient filled scroll bar's

RE: date times

2001-03-05 Thread Windle, Kevan
If there's a record for each hour then wouldn't the number of hours just be the number of records less the first one? -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED]] Sent: 01 March 2001 16:16 To: CF-Talk Subject: date times If there is anything I struggle with its

RE: Change the color scheme of scrollbars or gradient filled scro ll bar's

2001-03-05 Thread C. Hatton Humphrey
This is a feature that only works in the latest of IE's, but here's the code you use... put it in with the rest of your BODY declaration: BODY { scrollbar-face-color: #003300; scrollbar-shadow-color: #33; scrollbar-highlight-color: #55; scrollbar-3dlight-color: #22;

Re: Mailing Shots in CF

2001-03-05 Thread Sean Renet
If you try to send out a ton of mail at once with CFMAIL, for some reason it just stops working and you have to reboot the server or reinstall the dll. Allaire just hasn't quite got thier arms around CFMAIL and CFFTP yet. And they especially didn't have thier arms around it in 4.0. What I found

looping with cfmail

2001-03-05 Thread Jeff Fongemie
Hey all, I need to CFMAIL to about 2000 email addresses. Anyone have a good bit of code implementing a loop with my query so this thing does not timeout? Any other problems I might run into?? Lookin for a handout!!! Best regards, Jeff Fongemie mailto:[EMAIL

Help required

2001-03-05 Thread Nick Betts
I have developed a webiste where registered users can view exclusive offers. The client wants these offers to only be displayed the first three times, therefater only 'new' offers the user has not yet seen should be displayed. Has anyone any good ideas on how to do this? Regards, Nick.

RE: Executing using Coldfusion

2001-03-05 Thread Bert
CFEXECUTE should do the trick. If you want to see whats happening on the server (handy for debugging) then you need to set CF application server service to "Allow service to interact with desktop" Bert -Original Message- From: Lord Skulbite [mailto:[EMAIL PROTECTED]] Sent: 05 March

wddx

2001-03-05 Thread nizam
Hi everybody, 1.I want to get data from other server using the WDDX coldfusion tag.I have try to write code like below but it not work In my pc: CFQUERY NAME='q' DATASOURCE='cfsnippets' select Message_Id, Thread_id, Username from messages /CFQUERY The recordset data is:...P CFOUTPUT

wddx

2001-03-05 Thread nizam
Hi everybody, 1.I want to get data from other server using the WDDX coldfusion tag.I have try to write code like below but it not work In my pc: CFQUERY NAME='q' DATASOURCE='cfsnippets' select Message_Id, Thread_id, Username from messages /CFQUERY The recordset data is:...P CFOUTPUT

MDAC and SP Upgrade

2001-03-05 Thread Curtis C. Layton
Recently, one of our servers upgraded from NT 4 SP 5 to SP 6.a, and also the MDAC from 2.5 to 2.6. In conjuction with the MDAC upgrade we loaded the MS 4 Jet Engine SP 5. Some websites are experiencing timeouts and it appears that the CF buffer is being filled, crashes, and restarts. If anyone

More on MDAC SP Upgrade

2001-03-05 Thread Curtis C. Layton
Btw, there is CF 4.01 on that server ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

Re: MDAC and SP Upgrade

2001-03-05 Thread Jon Hall
Most likely the MDAC is to blame. MDAC 2.5 is the latest reliable release. jon - Original Message - From: "Curtis C. Layton" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, March 05, 2001 8:29 AM Subject: MDAC and SP Upgrade Recently, one of our servers upgraded from

Freeing .ldb lock on remote server.

2001-03-05 Thread Angél Stewart
Hello, I am using a shared hosting system, and I want to copy and update a database stored on the server that is locked (MSACCESS .ldb). I need to increase a field in the Users table from 50 to 255 characters. Do any of you recall the command or method to break the .ldb lock and so enable me

RE: wddx

2001-03-05 Thread Hal Helms
How are you sending the WDDX packet from your machine to the other? You might want to use a hidden form field. That way, when the information is submitted to the processing machine, you can decode it with the cfwddx tag where the input is "form.the_name". Make sense? I'm going to be putting out

Re: Mailing Shots in CF

2001-03-05 Thread W Luke
This might be a viable option - but can they connect remotely to a DB, because if it can't then it defeats the object. Do you know of any of these programs - URLs? Cheers. will Dont use CF for this. There are quite a few programs out there specifically for this purpose. There are even ones

RE: Freeing .ldb lock on remote server.

2001-03-05 Thread Hal Helms
Angel, there's a tutorial on this at www.teamallaire.com/tutorials. Basically, you run a query that throws an error and the lock will be released. Hal Helms Team Allaire [ See ColdFusionTraining.com for info on "Best Practices with ColdFusion Fusebox" training ] -Original Message-

Re: Freeing .ldb lock on remote server.

2001-03-05 Thread Jon Hall
http://www.thenetprofits.co.uk/coldfusion/faq/#answer77 jon -All your base belong to us! - Original Message - From: "Angél Stewart" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, March 05, 2001 8:46 AM Subject: Freeing .ldb lock on remote server. Hello, I am using a

RE: looping with cfmail

2001-03-05 Thread Philip Arnold - ASP
I need to CFMAIL to about 2000 email addresses. Anyone have a good bit of code implementing a loop with my query so this thing does not timeout? Any other problems I might run into?? OK, here's a (very) brief description of how I do it (written in pseudo-code) Put an additional field

RE: Freeing .ldb lock on remote server.

2001-03-05 Thread Dylan Bromby
note - you need CF4.5.x for this. -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 5:55 AM To: CF-Talk Subject: Re: Freeing .ldb lock on remote server. http://www.thenetprofits.co.uk/coldfusion/faq/#answer77 jon -All your base belong to us!

RE: Freeing .ldb lock on remote server.

2001-03-05 Thread Daniel Lancelot
What you are doing does not neccessarily require downloading the db - you could execute some SQL to achieve the same... ALTER TABLE Users ALTER COLUMN FieldIWantToAlter TEXT(255) also, there is an (undocumented) CF function that unlocks all CF datasources on the server...

Re: Change the color scheme of scrollbars or gradient filled scro ll bar's

2001-03-05 Thread Jeff Davis
Here is the standard CSS for changing scroll bar colors in IE: style BODY {SCROLLBAR-FACE-COLOR: #D4D0C8; SCROLLBAR-HIGHLIGHT-COLOR: #D4D0C8; SCROLLBAR-SHADOW-COLOR: #99; SCROLLBAR-3DLIGHT-COLOR: #FF; SCROLLBAR-ARROW-COLOR: #00; SCROLLBAR-TRACK-COLOR: #E3E3E3;

Re: No record Found????

2001-03-05 Thread Jeffry Houser
You will probably get a thousand responses. I don't know of a way to do it in SQL, but for ColdFusion CFIF myquery.recordcount is 0 "Sorry No Record Has Been Found" /CFIF At 11:24 PM 03/04/2001 -0500, you wrote: OK maybe it's getting too late. What is the correct SQL to

RE: wddx

2001-03-05 Thread Jeff Beer
Hi Hal, Is there any limit to the amount of data that can go in a (hidden) form field (referring to the WDDX packet)? Thanks, Jeff -Original Message- From: Hal Helms [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 8:49 AM To: CF-Talk Subject: RE: wddx How are you sending

CF Debugger

2001-03-05 Thread Ray Doubleday
This is a multi-part message in MIME format. --=_NextPart_000_000F_01C0A556.9909CA20 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hi, I am having trouble setting up the CF debugger. I think the problem is in how to do a development mapping ,

RE: Freeing .ldb lock on remote server.

2001-03-05 Thread Jeff Britts
If you send a query to that database that will throw an error, eg. a select from a non-existant table, I've found that will unlock the the database. -Original Message- From: Angél Stewart [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 8:47 AM To: CF-Talk Subject: Freeing .ldb

UltraDev 4 (Mac) for sale

2001-03-05 Thread Randy Zeitman
I have a new Macromedia Dreamweaver UltraDev 4 (Mac) for sale. Please email if interested. [EMAIL PROTECTED] -- Dominant 7 Design - Affordable and Effective Communications for Small Business www.Dominant7.com "I've gotten so out of shape sittin' at the computer all day that I get out of

Reg Expression

2001-03-05 Thread Duane Boudreau
I'm trying to replace the text between the title/title tags with a new string ReReplaceNoCase(templatefile, "title[A-Z]*/title","title#PageTitle#/title", "ALL") What am I doing wrong? (I really am bad with reg expressions) ~~ Structure your

Re: Mailing Shots in CF

2001-03-05 Thread W Luke
Sean, Thanks for the reply - definately looks a good idea, and thanks for the code example. I'll ask my ISP if they'll install the tag, and give it a try. Out of interest, with what sized query have you tried this with? Will -- [EMAIL PROTECTED] -=- www.lukrative.com Local-Advertising -=-

Re: Freeing .ldb lock on remote server.

2001-03-05 Thread Jon Hall
Please note: The faq shows how to do it in all versions. jon - Original Message - From: "Dylan Bromby" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, March 05, 2001 9:09 AM Subject: RE: Freeing .ldb lock on remote server. note - you need CF4.5.x for this.

Re: Mailing Shots in CF

2001-03-05 Thread Jon Hall
The original post stated he had an Access database... http://www.viratech.com/products/ebmailer.asp jon - Original Message - From: "W Luke" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, March 05, 2001 7:04 AM Subject: Re: Mailing Shots in CF This might be a viable

RE: wddx

2001-03-05 Thread Hal Helms
I suspect that there is some limit, but I haven't run into it yet and don't know what it is. Hal Helms Team Allaire [ See ColdFusionTraining.com for info on "Best Practices with ColdFusion Fusebox" training ] -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED]] Sent: Monday,

RE: Freeing .ldb lock on remote server.

2001-03-05 Thread Terry Bader
CFQUERY NAME="breakinglock" DATASOURCE="#dsn#" SELECT NOTHING /CFQUERY Bad Queries break the maintaining connection and thusly realese the lock... Terry Bader IT/Web Specialist EDO Corp - Combat Systems (757) 424-1004 ext 361 - Work [EMAIL

ColdFusion FAQ

2001-03-05 Thread Aidan Whitehall
I've altered the FAQ so that you can now point users directly to the answer to a particular question. So, if someone says "What ColdFusion books can you recommend?", you can reply http://www.thenetprofits.co.uk/coldfusion/faq/#answer32 -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd

RE: Reg Expression

2001-03-05 Thread Jason Powers
Your problem lies in your [A-Z]*. This doesn't account for any spaces, numbers, or special characters. Try something more like this: ReReplaceNoCase(templatefile, "title[^]*/title","title#PageTitle#/title", "ALL") This will search for anything that's not a "" character. Hope that helps

Repost: Grab images file with cfhttp

2001-03-05 Thread Rudy Rustam
Hi, I'm trying to get some image files with cfhttp. Have been trying for hours and no luck at all. All I got from cfhttp.filecontent is just the filename. Help...please! Thanks in advance. - Rudy ~~ Structure your ColdFusion code with

Re: Mailing Shots in CF

2001-03-05 Thread Sean Renet
they don't have too, you can just write a similar on and put it in the directory of your app - Original Message - From: "W Luke" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, March 05, 2001 6:37 AM Subject: Re: Mailing Shots in CF Sean, Thanks for the reply -

Client Caching of Web Pages

2001-03-05 Thread Willy Ray
Is there any way I can force a client to reload a page, and not pull from their cache? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

Re: Repost: Grab images file with cfhttp

2001-03-05 Thread Howie Hamlin
Post the code... Regards, Howie - Original Message - From: "Rudy Rustam" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, March 05, 2001 10:02 AM Subject: Repost: Grab images file with cfhttp Hi, I'm trying to get some image files with cfhttp. Have been trying for

Timing Out ColdFusion FAQ

2001-03-05 Thread Javed Mushtaq
hi man, I've altered the FAQ so that you can now point users directly to the answer to a particular question. So, if someone says "What ColdFusion books can you recommend?", you can reply http://www.thenetprofits.co.uk/coldfusion/faq/#answer32 The site looks like it is full of excellent

RE: Client Caching of Web Pages

2001-03-05 Thread Philip Arnold - ASP
Is there any way I can force a client to reload a page, and not pull from their cache? All settings you can put into the HTML can be over-ridden by the browser If they choose to never have the pages updated, then they'll never see the newer pages You can get JavaScript to refresh

Re: Client Caching of Web Pages

2001-03-05 Thread Jon Hall
http://www.thenetprofits.co.uk/coldfusion/faq/#answer56 I'm all about the FAQ today ;-) jon - Original Message - From: "Willy Ray" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, March 05, 2001 10:19 AM Subject: Client Caching of Web Pages Is there any way I can force

Stored Procedures

2001-03-05 Thread sebastian palmigiani
In a stored procedure how can you run a conditional query based on the value of a declared variable? The following does not work. DECLARE @PollType CHAR SELECT @PollType = PollType FROM Polls WHERE PollStatus = 1 -- Run query depending on PollType IF @PollType = 'YN' BEGIN

RE: Stored Procedures

2001-03-05 Thread Andy Ewings
Should work finehow is it not working?..if nothing is happening then I suggest @polltype is not YM or MC. You could use a CASE statement and run a default query in the CASE ELSE part. If you don't want to do this return the value of @polltype to see what it is.

RE: Reg Expression

2001-03-05 Thread Keith Thornburn
Duane, First off your regex probably needs to account for characters other than A-Z - try title[^]*/title which will match anything other than the opening '' of the end /title. Second, there is a confirmed bug in all current versions of CF. The ReReplace command is restricted to 20480

RE: Stored Procedures

2001-03-05 Thread DeVoil, Nick
Sebastian Try declaring the length of the variable DECLARE @PollType CHAR(2) Nick -Original Message- From: sebastian palmigiani [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 3:46 PM To: CF-Talk Subject: Stored Procedures In a stored procedure how can you run a conditional

RE: MDAC and SP Upgrade

2001-03-05 Thread mjohnson
From my experience 2.6 does not work well with NT 4.0 it might be fine with 2000 but we also had to revert back to 2.5sp1. We are running the same configs as you. NT 4.0 SP6a. Mark -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 1:41 PM To:

RE: Reg Expression

2001-03-05 Thread Duane Boudreau
Thanks that did the trick. Luckily most of the pages are very small - under 5k with lots of cfincludes. Duane -Original Message- From: Keith Thornburn [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 11:00 AM To: CF-Talk Subject: RE: Reg Expression Duane, First off

Verity and Security.. ??

2001-03-05 Thread Jeffry Houser
Developing an Intranet site. ColdFusion is set up to handle security, which means that user's sign in via a web form. A userID is cross-referenced with the table data and before showing any 'secure' data, the system checks to make sure the current user has access to it. If I

RE: Change the color scheme of scrollbars or gradient filled scro ll bar's

2001-03-05 Thread Thomas Chiverton
'Course, you could be sick, and do it by loadijng you page inside a javaapplet, and changing the scroll bars that way :-) A believe dynAPI allows this... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 11:44 AM To: CF-Talk Subject: RE:

RE: Verity and Security.. ??

2001-03-05 Thread Philip Arnold - ASP
ColdFusion is set up to handle security, which means that user's sign in via a web form. A userID is cross-referenced with the table data and before showing any 'secure' data, the system checks to make sure the current user has access to it. If I create a verity collection with all

RE: M$ licensing has me at wits end

2001-03-05 Thread Peter Theobald
html font size=3You can run Sybase for Linux for FREE for development purposes only. It's a great deal if you want a bunch of developers building sites and testing things out. For production use it costs about the same as MSSQL and Oracle (and is just as confusingly priced).br I don't know a

ActionScript Variables from CF

2001-03-05 Thread James Maltby
If anyone understands the following please help! Contents of textfile.cfm: cfparam name="text" default="Some text to display" cfparam name="var" default="image" cfoutputtext=#text#var=#var#/cfoutput Contents of textfile.swf:... loadVariablesNum("textfile.cfm",0); if (var == "image") [

Re: ColdFusion FAQ

2001-03-05 Thread Jim McAtee
Why would I reply to "What ColdFusion books can you recommend" by pointing to someone else's answer??? Jim - Original Message - From: "Aidan Whitehall" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, March 05, 2001 8:03 AM Subject: ColdFusion FAQ I've altered the FAQ

Re: CFLOCK, when to use...

2001-03-05 Thread Andy
Along these same lines, when I open a new window, is that a new session? If so, how are session variables such as User ID carried over? CFToken, CFID? Andy - Original Message - From: "Dave Watts" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, March 02, 2001 4:41 PM

email

2001-03-05 Thread Jones, Becky
is there a way to have a form that when a user types in data, it gets submitted to a database and an email of the data goes to a specific person or persons? thanks, bec. * This e-mail, including any attachments, is intended for the receipt and

RE: ColdFusion FAQ

2001-03-05 Thread C. Hatton Humphrey
I think the concept is to point someone to the FAQ so that if they have other questions, they can look there first before they start another thread. Either that, or it could be turned into a bad running joke about numbers... (*duck*) Hatton -Original Message- From: Jim McAtee

RE: Verity and Security.. ??

2001-03-05 Thread Jeffry Houser
Absolutely brilliant!! I wish I had thought of that, much thanks. At 04:29 PM 03/05/2001 +, you wrote: ColdFusion is set up to handle security, which means that user's sign in via a web form. A userID is cross-referenced with the table data and before showing any 'secure'

RE: email

2001-03-05 Thread John Wilker
Sure, You could have the form submit to a processing page. That page could run a query to insert all the passed in form data into a table, then you could do a CFMAIL tag and send all that same #FORM.blahblah# information in an email. CFQUERY insert form data /CFQUERY CFMAIL

Re: Change the color scheme of scrollbars or gradient filled scro ll bar's

2001-03-05 Thread Michael
If you have any reference's to doing this I would appreciate it, say some sites that do this TIA Michael "Thomas Chiverton" [EMAIL PROTECTED] wrote in message 0FE599B92CC1D311BE8300508BB1D1E9839922@LON1MLBX01">news:0FE599B92CC1D311BE8300508BB1D1E9839922@LON1MLBX01... 'Course, you could be

Re: email

2001-03-05 Thread Jamie Jackson
Of course, that is a common task. Just do an INSERT and a CFMAIL, both with the same fields. Jamie On Mon, 05 Mar 2001 12:04:04 -0500, "Jones, Becky" [EMAIL PROTECTED] wrote: is there a way to have a form that when a user types in data, it gets submitted to a database and an email of the data

RE: email

2001-03-05 Thread Dylan Bromby
Here you go; This assumes a database table named "yourtable" with 2 fields: sender, message. It's simple, but should get you started. --Dylan !- cut and paste this code into a file called email_from_form.cfm - CFIF #IsDefined("submit_form")# !- insert data into my

RE: Change the color scheme of scrollbars or gradient filled scro ll bar's

2001-03-05 Thread ibtoad
I have used this in a site @ http://www.auctionharddrive.com Each page has a different color scrollbar according to that pages color scheme. Rich -Original Message- From: Michael [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 3:14 PM To: CF-Talk Subject: Re: Change the color

Re: Change the color scheme of scrollbars or gradient filled scro ll bar's

2001-03-05 Thread Jay Patton
two that i can think of off the top of my head www.4guys.com www.registrars.com (this only works in IE 5.5 ) Jay Patton Web Design / Application Design Web Pro USA 406.549.3337 ext. 203 1.888.5WEBPRO www.webpro-usa.com - Original Message - From: "Michael" [EMAIL PROTECTED] To: "CF-Talk"

RE: email

2001-03-05 Thread Arden Weiss
Sure -- bottom part of action page CFM that sends email after a table update -- the email can contain anything you want including form variables formatted as you desire -- all this one does is say a posting was made and what for... HEAD TITLEShipment Record Update Page/TITLE META

RE: ColdFusion FAQ

2001-03-05 Thread Arden Weiss
I found what you had already done quite adequate and super useful -- Printed it all out and read it every night as I crawl in bed -- always learn something new -- problem is, I forget by the time I wake up... Quack Quack, Gobble Gobble -- or otherwise Duck, Turkey... ^ / \__ (

RE: Change the color scheme of scrollbars or gradient filled scro ll bar's

2001-03-05 Thread John Lucas
www.fastestisp.com -- using the css styles method -Original Message- From: Michael [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 2:14 PM To: CF-Talk Subject:Re: Change the color scheme of scrollbars or gradient filled scro ll bar's If you have any reference's

RE: wddx

2001-03-05 Thread Dan G. Switzer, II
Large packets take forever to post, but I've posted some pretty big darn packets to servers. The biggest thing to watch out for is ODBC limitations on your fields. By default SQL Server 7 only allows 64K long strings. If you need more, create a separate DSN for large block inserts and use that

RE: CF Debugger

2001-03-05 Thread Dave Watts
I am having trouble setting up the CF debugger. I think the problem is in how to do a development mapping, although I am not really sure. NO ONE I have talked with really knows how to do it, they all use debug statements in thier code. It seems as if the IDE's debugger is equivalent to

Re: Change the color scheme of scrollbars or gradient filled scro ll bar's

2001-03-05 Thread Michael
Thank You too everyone. "Jay Patton" [EMAIL PROTECTED] wrote in message 004401c0a599$d90f1ec0$cb01a8c0@feds">news:004401c0a599$d90f1ec0$cb01a8c0@feds... two that i can think of off the top of my head www.4guys.com www.registrars.com (this only works in IE 5.5 ) Jay Patton Web Design /

RE: reading lists over and over

2001-03-05 Thread Eric Barr
Jason, Each time you read in the file you could process it and create session level arrays or structures that suite your needs. This way you are doing the text processing once, and reading arrays / structures all the other times ..this should help with processing speed. -eric

OT: reading local INI file

2001-03-05 Thread Jason Egan
I have set up several kiosks, each of them are connected to the net... I need to uniquely identify each computer, but without human intervention. The browser is a Delphi form, and part of the INI file that is on each kiosk contains a unique ID for that kiosk. Any ideas for reading that INI file

RE: reading local INI file

2001-03-05 Thread Dave Watts
I have set up several kiosks, each of them are connected to the net... I need to uniquely identify each computer, but without human intervention. The browser is a Delphi form, and part of the INI file that is on each kiosk contains a unique ID for that kiosk. Any ideas for reading that

REMOVE

2001-03-05 Thread Shay Gonzalez
REMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVE REMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVE REMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVE REMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVE REMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVE REMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVE

RE: reading local INI file

2001-03-05 Thread Duane Boudreau
GetProfileString(iniPath, section, entry) iniPath Fully qualified path (drive, directory, filename, and extension) of the initialization file, for example, C:\boot.ini. section The section of the initialization file from which you would like to extract information. entry The name of the value

RE: reading local INI file

2001-03-05 Thread Philip Arnold - ASP
I have set up several kiosks, each of them are connected to the net... I need to uniquely identify each computer, but without human intervention. The browser is a Delphi form, and part of the INI file that is on each kiosk contains a unique ID for that kiosk. Any ideas for reading that INI

RE: reading local INI file

2001-03-05 Thread Duane Boudreau
Oops! Should have read the entire email. You will have to use Delphi to read the INI file on the local machine and pass it along as part of the post that Delphi triggers or as part of the data packet that is being sent to the server. Duane -Original Message- From: Jason Egan

RE: File upload vs. Virus protection

2001-03-05 Thread Eric Barr
Mike, Most major virus programs have some sort of "real time file system protection" ...if you have something like this running on the server .CF isn't going to be able to write an file that the virus engine recognizes as infected, no matter how much it wants. Although I'm not sure on this,

Re: ActionScript Variables from CF

2001-03-05 Thread Billy Cravens
I believe that's it's much like WAP... there can be no whitespace before your text variable. Also, "text" may be a reserved word in ActionScript. -- Billy Cravens HR Web Development, Sabre [EMAIL PROTECTED] James Maltby wrote: If anyone understands the following please help! Contents of

RE: Mapping to an extension PART TWO

2001-03-05 Thread Eric Barr
There are a few reasons this could / would be done. 1)anyone remember .dbm files ? Oh yeah, their CF file look at your mappings ...their run through the same CF Stub as CFM files thanks to this mapping ability. 2) A bit of obfuscation. on the client end it is more difficult to tell what

Re: REMOVE

2001-03-05 Thread Kevin Schmidt
Your head from your ass! Read the bottom of any email! - Original Message - From: "Shay Gonzalez" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, March 05, 2001 1:10 PM Subject: REMOVE REMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVE

RE: email

2001-03-05 Thread Roque,Carlos
Use a CFQUERY and then do CFMAIL Carlos Roque I.S., Applications Web Development Sage Software, Inc. x2154 -Original Message- From: Jones, Becky [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 9:04 AM To: CF-Talk Subject:email is there a way to have a form

RE: REMOVE

2001-03-05 Thread Philip Arnold - ASP
REMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVE REMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVE REMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVE REMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVE REMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVEREMOVE

RE: Verity and Security.. ??

2001-03-05 Thread Belfiori, Ross
But, what if the secure data is not in a table, but documents. Don't the custom fields only work when indexing against a database? Ropo -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 2:07 PM To: CF-Talk Subject: RE: Verity and Security..

RE: OT may be : schedule FTP

2001-03-05 Thread Eric Barr
use CRON its a command scheduler on *NIX'es -eric Common sense is genius dressed in its working clothes. -- Ralph Waldo Emerson Eric Barr Zeff Design (p) 212.714.6390 (f) 212.580.7181 -Original Message- From: Mak Wing Lok

RE: Cascading menus - anyone know a good cross-browser version?

2001-03-05 Thread Eric Barr
Try looking at Version 2 development and all fixes etc... have moved to sourcefourge http://dynapi.sourceforge.net/dynapi/ -eric Common sense is genius dressed in its working clothes. -- Ralph Waldo Emerson Eric Barr Zeff Design (p)

CyberCash Bankruptcy

2001-03-05 Thread Shawnea Carter
http://finance.individual.com/display_news.asp?doc_id=PR20010302DCF008page= news Needless to say we have some new clients who are less than eager to pay the $500 to a company that may not be around - and we also need to have some backup plans in place for our existing CyberCash dependant

RE: email

2001-03-05 Thread Jones, Becky
i got that is there a way to format the elements inside the cfmail? right now it just outputs the data kinda sloppy, i wanted more like a table output. -Original Message- From: Roque,Carlos [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 2:32 PM To: CF-Talk Subject: RE:

Siteminder, Scheduler, Advanced Security

2001-03-05 Thread Paul Sizemore
We just made some changes to our server (Win 2K), and now the Scheduler, and Advanced Security in the CF Administrator does not work. The Scheduler generates a "Access Denied" when the output is saved. The Advanced Security generates "Error Diagnostic Information, Security Policy Administration,

Re: REMOVE

2001-03-05 Thread Bill Davidson
I think we need to have a 'net-test' like we do with driving - if you can't do a 3-point turn, you have no business to be on the road. -- If you can't unsubscribe from a listserv, you have no business to be on the internet. -Bill /intraget ~~

Intranets with all the bells whistles.

2001-03-05 Thread Paul Ihrig
could you all please give me a list of the most successful add on / enhancements to your intranets? URL's other resources would be great. i am in the process of trying to help plan implement a major over hall to our intranet. what i see are our current strong point is standard business logic.

Session timeout

2001-03-05 Thread Kinley Pon
I am simply not doing something correct...I hope someone can help. Problem: I am prematurely getting a session timeout; less than an hour. --- I have configured the Coldfusion Server with the following: Session Variables MAX Timeout: 23 hours DEFAULT Timeout: 20 minutes

Re: CF-Talk-list V1 #191

2001-03-05 Thread McEachran
Please cancel my membership. Thank you, Jason McEachran - Original Message - From: "CF-Talk" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, March 04, 2001 7:45 PM Subject: CF-Talk-list V1 #191 CF-Talk-list Sun, 4 Mar 2001 Volume 1 : Number 191 In

RE: REMOVE

2001-03-05 Thread Richard Banks
ALL YOUR REMOVES ARE BELONG TO US ALL YOUR REMOVES ARE BELONG TO US ALL YOUR REMOVES ARE BELONG TO US ALL YOUR REMOVES ARE BELONG TO US ALL YOUR REMOVES ARE BELONG TO US ALL YOUR REMOVES ARE BELONG TO US ALL YOUR REMOVES ARE BELONG TO US ALL YOUR REMOVES ARE BELONG TO US ALL YOUR REMOVES ARE

German or Austrian hosting service

2001-03-05 Thread Paul Ihrig
i need to find a German or Austrian hosting service. preferably one that supports CF. Thank You -paul Web Developer, NBBJ Work: [EMAIL PROTECTED] 614 241-3534 fax:614 485-5534 Home: [EMAIL PROTECTED] 614 449-1681 icq: 47658358

Using CF to send to a GSM phone

2001-03-05 Thread Jamie Smith
Does anyone have any information on sending SMS messages to a GMS phone. Jamie Smith CIO Upmarkit, Inc. voice: 904.253.2700 fax:509.278.5736 ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: REMOVE

2001-03-05 Thread Braver, Ben:
We need to have a "HUA" test -- to see whether the person uses the Army version ("Heard, Understood, Acknowledged") or the other version ("Head Up A**")... -Original Message- From: Bill Davidson [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 12:08 PM To: CF-Talk Subject: Re:

  1   2   >