studio regex ?

2004-04-16 Thread Jeff Beer
In CF Studio 5, how would I do a regex search and replace on a line format like: 04/22/04 http://www.blah.com/stuff where I want to remove the date and the following space, leaving the rest of the line untouched? I have to do this for about 30,000 lines.. no fun by hand! Thanks!

RE: studio regex ?

2004-04-16 Thread Jeff Beer
:37 PM To: CF-Talk Subject: Re: studio regex ? I dont use CF STudio, but you can do this with a regexp like this ^.{7}// or if you have an advanced IDE like BBEdit, you could just select the area - cols 1-7 over n-lines and do a cut HTH Dick On Apr 16, 2004, at 11:21 AM, Jeff Beer wrote: In CF

Split screen editor for two files

2004-03-11 Thread Jeff Beer
Anyone know of a decent editor for CF that allows split screens for two or more files? I'm working with a template that's about 1500 lines and need to refer to the original pretty often. I'm currently using CF Studio 5.. I'm downloading Eclipse right now - it's super slow at about 9KB per..

RE: Split screen editor for two files

2004-03-11 Thread Jeff Beer
into as you split screen across multiple files - Original Message - From: Jeff Beer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 11, 2004 4:19 PM Subject: Split screen editor for two files Anyone know of a decent editor for CF that allows split screens for two or more

Source control ans Studio 5

2004-02-17 Thread Jeff Beer
Hello all, Has anyone used PVCS with CF Studio 5? I have a project created in CFS Studio, it's mapped to PVCS.There are no errors, but opening a directory takes forever, and I'm not able to check out files - the option is greyed out on the right-click popup. Opening the same diretory in

CFMX errors

2004-01-19 Thread Jeff Beer
One of my clients has tons of these entries in the C:\CFusionMX\runtime\logs\default-err.log.Does anyone have any tips on what might cause this? The server runs stable most of the time, but once in a while it seems to develop problems connecting to the database (SQL Server 2000). 01/19 09:56:11

RE: CFMX errors

2004-01-19 Thread Jeff Beer
Well, there's only one or two DB related errors for the past week in the application.log, where the default-err.log file has 6 entries (like before) in the last 20 minutes alone.But, another server connecting to the same DB, also running CFMX, is having no problems. Odd.. -Original

RE: CFMX errors

2004-01-19 Thread Jeff Beer
using cfcontent to download a file and the user clicks cancel, you will get that error. This and the SQL problem I mentioned where the only two times I have seen this. It was worth a shot. :-) -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED] Sent: Monday, January 19, 2004 5:12

OT: Dreamweaver MX

2003-12-03 Thread Jeff Beer
In DWMX you can add tag libraries for just about any language (PHP, VB, CF, etc). I can't figure out how to change the delimiter for a specific library. I want to add a bunch of tags for an image gallery creator (Arles, if you know it), and want to be able to plug in the tags using dreamweaver.

directory security

2003-11-27 Thread Jeff Beer
On a unix box I can put a .htaccess file in an image subdirectory and have it redirect image requests that don't originate from that server (referer). Is there any way to do that on a windows 2000 platform?The idea is to keep people from linking directly to images from their web sites. TIA, and

RE: directory security

2003-11-27 Thread Jeff Beer
PM To: CF-Talk Subject: Re: directory security Jeff Beer wrote: On a unix box I can put a .htaccess file in an image subdirectory and have it redirect image requests that don't originate from that server (referer). Is there any way to do that on a windows 2000 platform? Doesn't Apache offer

CF_ZipRad

2003-11-20 Thread Jeff Beer
Hello all, Please excuse the shameless plug. CF_ZipRad is now freeware.If you wanted to use it and didn't have the budget, it's all yours. The source files are unencrypted and ready to use. The distribution includes CF_ZipRad, CF_Zip2City, CF_City2Zip, CF_Area2City and CF_City2Area. I'm

RE: Using cfhttp to display pdf file

2003-11-18 Thread Jeff Beer
Are you using cf5?I could not make it work on CF5, but it works like a charm on CFMX (6.1): cfsetting enablecfoutputonly=yes showdebugoutput=no cfhttp GetAsBinary=yes url=""> method=GET/cfhttp cfcontent type=application/pdfcfoutput#trim(toString(cfhttp.filecontent))#/c foutput -Original

OT: CF Studio 5 resource windows

2003-11-17 Thread Jeff Beer
Studio has two file windows (file 1, primary and file 2, secondary).Is there any way to add more? I'd love to have four or five file windows available as I bounce between RDS and FTP servers all day long. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Users want to format text

2003-11-14 Thread Jeff Beer
Is this a replacement for a textarea?Will it post along with a form submission?I don't see any docs of that nature... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, November 13, 2003 6:39 PM To: CF-Talk Subject: RE: Users want to format text

RE: Users want to format text

2003-11-14 Thread Jeff Beer
Way too involved.. There are about 40 total textareas I need to replace - and I'm not at all sure it will handle MS Word conversions. Thanks for the info, though - I'll probably use it for other projects. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent:

RE: Users want to format text

2003-11-14 Thread Jeff Beer
http://www.fredck.com/FCKeditor/ This is an awesome editor - free of charge - seems pretty flawless in use, as long as your clients are on Windoze with IE5+ -Original Message- From: John Burns [mailto:[EMAIL PROTECTED] Sent: Friday, November 14, 2003 1:07 PM To: CF-Talk Subject:

RE: SQL Generators

2003-11-13 Thread Jeff Beer
Databaseblocks doesn't seem to be available on that site. -Original Message- From: Adam Churvis [mailto:[EMAIL PROTECTED] Sent: Thursday, November 13, 2003 1:26 PM To: CF-Talk Subject: Re: SQL Generators Download a copy of DatabaseBlocks V2.1 from

RE: SQL Generators

2003-11-13 Thread Jeff Beer
Databaseblocks doesn't seem to be available on that site. -Original Message- From: Adam Churvis [mailto:[EMAIL PROTECTED] Sent: Thursday, November 13, 2003 1:26 PM To: CF-Talk Subject: Re: SQL Generators Download a copy of DatabaseBlocks V2.1 from

RE: Outputting an XML Object to browser

2003-11-12 Thread Jeff Beer
thanks to all who have replied. I have it outputting now, and when I view the source it looks like an XML document.However, in the browser, it's all one long string of text - I'd like the browser to recognize it as xml. Once again, I'm using cfsavecontent to wrap up the nodes, then outputting

Outputting an XML Object to Browser

2003-11-11 Thread Jeff Beer
Hi all, Been searching and trying for quite some time and need a pointer or two... I've created an XML object from a query (using CFSAVECONTENT) and it CFDUMPs just fine.Now I simply need to output that as XML to the browser (or calling application).I keep getting: The XML page cannot be

Outputting an XML Object to Browser

2003-11-11 Thread Jeff Beer
Hi all, Been searching and trying for quite some time and need a pointer or two... I've created an XML object from a query (using CFSAVECONTENT) and it CFDUMPs just fine.Now I simply need to output that as XML to the browser (or calling application).I keep getting: The XML page cannot be

Outputting an XML Object to browser

2003-11-11 Thread Jeff Beer
[sorry for the dupe post - the original got chopped off at the line of dashes] Hi all, Been searching and trying for quite some time and need a pointer or two... I've created an XML object from a query (using CFSAVECONTENT) and it CFDUMPs just fine.Now I simply need to output that as XML to the

RE: Outputting an XML Object to browser

2003-11-11 Thread Jeff Beer
: Outputting an XML Object to browser Shouldn't you be outputting myXmlObj? Jeff Beer wrote: [sorry for the dupe post - the original got chopped off at the line of dashes] Hi all, Been searching and trying for quite some time and need a pointer or two... I've created

XML parsing question - missing elements

2003-11-10 Thread Jeff Beer
When you have an XML record with a missing element (not just an empty element), what's the best way to test for it? I'm using CFTRY/CFCATCH, and it seems there must be a better way: cftry cfset QuerySetCell(myQuery,'image', myXMLDoc.data.star[idx].image.XMLText) cfcatch type=Any cfset

RE: Arden Weiss - virus sending messages to the list?

2003-11-06 Thread Jeff Beer
This sounds exactly like corrupted video memory.Happen to me all the time when I have about 80 windows.. Well, 20 or so :) -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 5:34 PM To: CF-Talk Subject: Re: Arden Weiss - virus

Re: weather feed

2003-11-06 Thread Jeff Beer
http://www.wunderground.com/ They have some pretty nice little applets -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 4:22 PM To: CF-Talk Subject: RE: Re: weather feed thanks greg, i'm trying to find one with the satalite

RE: How can it be done ?

2003-10-28 Thread Jeff Beer
If they have to login, just associate the login with the provided ID. When the login occurs, retrieve the appropriate ID. -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 9:52 AM To: CF-Talk Subject: How can it be done ? Good afternoon

RE: How can it be done ?

2003-10-28 Thread Jeff Beer
again. - Original Message - From: Jeff Beer To: CF-Talk Sent: Tuesday, October 28, 2003 4:58 PM Subject: RE: How can it be done ? If they have to login, just associate the login with the provided ID. When the login occurs, retrieve the appropriate ID. -Original Message

Eolas patent suit

2003-10-24 Thread Jeff Beer
I'm more than a little worried about this change.My livelihood comes from developing and delivering flash-based newsletters and promotions in e-mail.When this change goes into effect, we're either out of business or facing the loss of our primary product. I've seen no workarounds that will allow

RE: Eolas patent suit

2003-10-24 Thread Jeff Beer
Dave is correct - scripting is out for e-mail messages - way too many variables to test for and manage, assuming you can even test. We've developed a way to allow the code to 'gracefully degrade' from fully scripted embedding of the OBJECT tag, to showing a standard jpg image, that works on almost

OT: IIS 5 perfomance

2003-10-23 Thread Jeff Beer
Does anyone know how to determine how much memory and/or cpu an individual web site instance is using under IIS 5/Win2K? Performance monitor doesn't show memory/cpu for individual sites..A couple sites are bogging down the entire server but I have no clue which ones.It's not a bandwidth or

RE: IIS 5 perfomance

2003-10-23 Thread Jeff Beer
to differ click on ADD then choose web service from the list.You will see a list of all your web sites. Pick the one(s) you want and add the counters you are interested in. -Mark -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 12:50 PM

RE: IIS 5 perfomance

2003-10-23 Thread Jeff Beer
specifically looking for memory and cpu counters - my bad.You should still be able to determine this by finding the number of running requests for each web site. -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 12:50 PM To: CF-Talk Subject: OT

OT: SQL Enterprise Manager

2003-10-20 Thread Jeff Beer
Sorry for the OT post - I'm stumped. Using Enterprise Manager for MS SQL Server 2k, how can I register a server twice so I can use different DBs with different login credentials?It's a major pain having to disconnect and reconnect, using different credentials, over and over and over throughout

RE: SQL Enterprise Manager

2003-10-20 Thread Jeff Beer
Enterprise Manager Use the Client Network Utility to create aliases for each connection. HTH, Scott -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED] Sent: Monday, October 20, 2003 3:06 PM To: CF-Talk Subject: OT: SQL Enterprise Manager Sorry for the OT post - I'm stumped

RE: SQL Enterprise Manager

2003-10-20 Thread Jeff Beer
NOT authorized for that username - so if you are trying to streamline the length of the sidebar - it may not give you the result you desire. -Mark -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED] Sent: Monday, October 20, 2003 2:58 PM To: CF-Talk Subject: RE: SQL Enterprise

Errors, Web Services, CFMX 6.1

2003-10-16 Thread Jeff Beer
I'm running the sample code from Chapter 25 of the Coldfusion MX Bible. In both instances the only code I've changed is the URL info. I continually get this error: Could not generate stub objects for web service invocation. Name: http://localhost:8500/com/webservice.cfc?WDSL. WSDL:

RE: Errors, Web Services, CFMX 6.1

2003-10-16 Thread Jeff Beer
Service Description Language. -- Tom Jordahl Macromedia Server Development -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2003 1:35 PM To: CF-Talk Subject: Errors, Web Services, CFMX 6.1 I'm running the sample code from Chapter 25

RE: Regular Expression find end of line / carriage return and replace

2003-09-26 Thread Jeff Beer
Hi Mark, No need for a regex unless I completely misread your question. In CFS, go to Search--Extended Replace in the 'Find What' field, literally hit the enter key pop a comma in the 'replace with' field let 'er rip. umm... make sure current document is selected :) -Original

RE: Why am I getting this not an available query error?

2003-09-18 Thread Jeff Beer
First, try using: CFLOOP Query=#Session.Cart# CF needs to know that Session.Cart is a variable. -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Thursday, September 18, 2003 9:55 AM To: CF-Talk Subject: Why am I getting this not an available query error? Good

RE: Why am I getting this not an available query error?

2003-09-18 Thread Jeff Beer
-Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED] Sent: Thursday, September 18, 2003 10:24 AM To: CF-Talk Subject: RE: Why am I getting this not an available query error? First, try using: CFLOOP Query=#Session.Cart# CF

Berkeley DB

2003-09-08 Thread Jeff Beer
Has anyone had to read data from a Berkeley DB on Win2k? I have no idea about how to even start. Google searches turn up blank... ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription:

RE: Berkeley DB

2003-09-08 Thread Jeff Beer
, Senior Development Engineer AudienceCentral [EMAIL PROTECTED] voice : 360.756.8080 x12 fax : 360.647.5351 www.audiencecentral.com -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED] Sent: Monday, September 08, 2003 11:13 AM To: CF-Talk Subject: Berkeley DB Has anyone had

RE: Congressional Data

2003-08-20 Thread Jeff Beer
http://www.visi.com/juan/congress/downloads.html You'll love this :) -Original Message- From: Chuck Rodgers [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 12:34 PM To: CF-Talk Subject: Re: Congressional Data Hi, I did that and searching for congress data or congressional

OT: CF Studio regex

2003-08-04 Thread Jeff Beer
I have a long file of email addresses, and somewhere in there is a line that's not terminated with a CRLF correctly. The file is simply one column of addresses. Can anyone show me how to construct a regex (for CFStudio 5.0's extended search) to either a) check for a line longer than xx

RE: Potential new Cold Fusion hosting center

2003-08-04 Thread Jeff Beer
Check out CrystalTech's CF hosting offerings. Aside from a few CF programming and best practice tips they've posted, their network and systems run really well and the prices are great. CrystalTech would be a great benchmark for anyone doing a CF hosting startup. -Original Message- From:

RE: CF tag for highlighting text in a textfield?

2003-08-01 Thread Jeff Beer
Unfortuneatly, a standard HTML textarea doesn't render HTML codes, so you really can't highlite words - the textarea would show the b or style or font tags, etc.. You'll need to use an HTML editor object - I use SoEditor Lite (http://www.siteobjects.com/pages/order.cfm). It's free and very

RE: Zip code search

2003-07-07 Thread Jeff Beer
Check out http://www.dbactive.com and look at the CF_ZipRad tag. It uses the zip code database from www.jcsm.com. -Original Message- From: chad [mailto:[EMAIL PROTECTED] Sent: Monday, July 07, 2003 9:50 AM To: CF-Talk Subject: Zip code search Does anyone know of a good coldfusion

RE: best practice for building a large text file?

2003-07-01 Thread Jeff Beer
Wait - it's only Tuesday... Can I have your job? ;p From: James Blaha [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 10:44 AM { ... } Have a great weekend! Regards, JB ~| Archives:

OT: image processing

2003-06-16 Thread Jeff Beer
Sorry for the off topic post but y'all know just about everything under the sun and I'm scared I'll have to do this work by hand: I need to take a single image (jpg or gif - doesn't matter) and overlay text onto it - 650 or more times. The data for the text will come from a SQL server DB (or

RE: image processing

2003-06-16 Thread Jeff Beer
ColdFusion Users Group Founder Director www.cfug-vancouverisland.com - Original Message - From: Jeff Beer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, June 16, 2003 8:12 AM Subject: OT: image processing Sorry for the off topic post but y'all know just about everything under

RE: OT Javascript popups and CF

2003-06-13 Thread Jeff Beer
You should be able to add newlines (\n) to break up the string. Since it's a URL, you might have to muck about finding a space near your line length limit to insert the newline. -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2003 7:12 PM To:

RE: CF and PhotoShop

2003-03-13 Thread Jeff Beer
JASC PaintShop Pro has a lot of functionality as far as automated processes and is mucho cheaper. Plus, it's mucho smaller and loads pretty fast. I use it for all the quick touchups and text changes, etc, and to process entire directories of graphics (adding borders, watermarks, etc).

second set of eyes needed

2003-03-12 Thread Jeff Beer
I think I'm doing this correctly. I want to see duplicate values in a table where a foreign key is different. SELECT A.EM FROM mgs A INNER JOIN mgs B ON A.EM = B.EM WHERE (A.m_id = 52) AND (B.m_id = 59) Does this look correct? TIA! Jeff

getmetricdataxml.cfm

2003-03-10 Thread Jeff Beer
Can I turn off the MIB stuff anywhere? I don't need the data and it's adding a little load to my system. We used to run SNMP - I'm guessing they had it logged then somewhere back then. This is CF 5.0 TIA! Jeff ~| Archives:

RE: getmetricdataxml.cfm

2003-03-10 Thread Jeff Beer
installer and choose Modify, you can unselect the MIB option (located under Application Management group). Deb -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 4:04 PM To: CF-Talk Subject: getmetricdataxml.cfm Can I turn off the MIB stuff anywhere? I

RE: window.close question?

2003-03-09 Thread Jeff Beer
You can do that if you opened the parent with javascript. However, any time you try to close the original window with js, it will complain -Original Message- From: Jann VanOver [mailto:[EMAIL PROTECTED] Sent: Sunday, March 09, 2003 1:09 PM To: CF-Talk Subject: Re: window.close question?

OT: text parsing tool

2003-02-27 Thread Jeff Beer
I know I could do this with CF, or Perl, but there has to be a better way. I have a bunch of 5mb files that I need to extract specific info from. The format is simple. I have a single phrase in multiple places like this: X-msg-id: where the X-msg-id: portion never changes, and the

RE: text parsing tool

2003-02-27 Thread Jeff Beer
), and brainless to use. Just have it output the results in whatever format you need to import directly into SQL Server and your job will be cake. Heck, if you've got DBI module in there, you could have it import to SQL Server directly. barneyb -Original Message- From: Jeff Beer [mailto:[EMAIL

RE: Updating Multiple Records

2003-02-22 Thread Jeff Beer
Hi Russ, Assuming your field names are the same for each record, you will get a list of data items when you submit the form, as in: form.myId = 1,4,5,6,7 form.firstName=jeff,tom,steve,brad,jim form.age=22,34,54,27,31 Now, all you need to do is loop over the myID list, and use basic list

FW: 2nd try: SQL query help

2003-02-02 Thread Jeff Beer
Anyone have any ideas? -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 11:00 AM To: CF-Talk Subject: OT: SQL query help Using SQL Server, how would I define a query to return ranges of ID's (primary key) where a tinyint field was not true

RE: 2nd try: SQL query help

2003-02-02 Thread Jeff Beer
Jochem - you are a rock star - thanks for this! Performance is not an issue - I can run this once or twice a month late, late at night :) -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 02, 2003 12:04 PM To: CF-Talk Subject: RE: 2nd try: SQL

OT: SQL query help

2003-01-30 Thread Jeff Beer
Using SQL Server, how would I define a query to return ranges of ID's (primary key) where a tinyint field was not true? I'm looking for any ranges (eg; 12202 - 12249 and 14477 - 15225) where that tinyint field is 0. I'd like to specify a minimum number of records in that range, but it's not

RE: Cold Fusion and Telnet

2003-01-25 Thread Jeff Beer
How about a java telnet applet? http://javassh.org/ or http://www.t0.or.at/e-land/ an example is here: http://unitopia.uni-stuttgart.de/telnet/ let that page load, hit connect, and the telnet window pops up. I've used similar applets to connect to old serial port BBS games :)

RE: SQL Worm

2003-01-25 Thread Jeff Beer
hey - there's nothing wrong with cheap Thai beer :) -Original Message- From: [EMAIL PROTECTED] (Paul Hastings) [mailto:[EMAIL PROTECTED] (Paul Hastings)] Sent: Sunday, January 26, 2003 1:16 AM To: CF-Talk Subject: Re: SQL Worm Just one more reason why SQL server doesn't cut it...

RE: CF Hosting Suggestions

2003-01-22 Thread Jeff Beer
www.crystaltech.com I use their 'plan III' with coldfusion for almost all my clients. 49.95/month for everything including SQL Server, mail, etc.. Has a killer control panel that allows you to configure your own services, including DSNs, file and directory permissions with user names, and DNS

RE: Multiple Emails -- HELP!!!!

2003-01-06 Thread Jeff Beer
A couple things to look at: 1. Is your e-mail server actually at www.juliagreen.com? Usually it would be mail.something.com, etc. 2. You are using a FROM address with a different domain than the mail server you specified in the SERVER attribute. Usually, the FROM address must exist on the

RE: Naming Help tblShoutOuts ?

2002-12-12 Thread Jeff Beer
Looks like you want a contact history or contact log. How about tblContact_Log? -Original Message- From: Luce, Greg [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 4:06 PM To: CF-Talk Subject: Naming Help tblShoutOuts ? What's another word for contact. We have a table

RE: FedEx Shipping tag - willing to purchase

2002-12-11 Thread Jeff Beer
Check out www.intershipper.com - CF custom tag is free and they handle UPS, Fed-Ex, DHL, Airborne, USPS and others. Free service as well. -Original Message- From: UXBinfo [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 9:30 AM To: CF-Talk Subject: FedEx Shipping tag -

RE: BIZZARE Session Problem

2002-12-11 Thread Jeff Beer
How many application.cfm files do you have? If the name param is different it will wipe out the existing session info and start fresh as the user changes directories. Also, cookies can't be set when using cflocation, so the system will generate a new set of tokens on each request. I use use a

RE: Macromedia Contribute

2002-12-09 Thread Jeff Beer
I'm thinking that Contribute offers a great opportunity for install/configuration/training, with a good upsell for a full-featured, custom CMS in some cases - either immediately or down the road. -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09,

RE: cffile delete (with spaces in filename)

2002-12-04 Thread Jeff Beer
Try using the Dos short name - my ver 1.txt becomes myver1~1.txt -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 04, 2002 11:47 AM To: CF-Talk Subject: RE: cffile delete (with spaces in filename) no dice, mark, thanks for trying though ;)

RE: cffile delete (with spaces in filename)

2002-12-04 Thread Jeff Beer
1a.txt) in which case it might be FooBar~2.txt or ~3, etc. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 04, 2002 12:04 PM

RE: cffile delete (with spaces in filename)

2002-12-04 Thread Jeff Beer
characters (such as my ver 1a.txt) in which case it might be FooBar~2.txt or ~3, etc. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED]] Sent: Wednesday

RE: Cannot Connect to Mail Server CF 5

2002-11-28 Thread Jeff Beer
If you get connected with IP and not with machine or domain name, it's a DNS or WINS error. You can add an entry into localhosts so it will always resolve. Just be sure to update it if that machine's IP ever changes. -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]]

RE: Cannot Connect to Mail Server CF 5

2002-11-28 Thread Jeff Beer
hmm.. I probably should have asked if he's running Windows or *nix before mentioning wins or localhosts... -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 28, 2002 2:57 PM To: CF-Talk Subject: RE: Cannot Connect to Mail Server CF 5 If you get

RE: [OT] Zip Code Lookup

2002-11-23 Thread Jeff Beer
This only sets a bounding box of zips to consider when doing the actual queries and calcs. If you try to do a brute force match over your entire database, it becomes extremely slow. So, this query draws (selects) a square with sides equal to the desired radius, then passes those values to the

SQL: self-joins and counts - lots of detail

2002-11-20 Thread Jeff Beer
Hi folks, I'm stumped on a SQL query. Using SQL Server 7.0. I have two tables - one with a lot of detail info, and one as a cross reference. The detail table (msgs) has a primary key (message_id) and an e-mail address (emailAddress), plus other stuff that doesn't matter for now. The cross

RE: self-joins and counts - lots of detail

2002-11-20 Thread Jeff Beer
Sorry about the formatting.. Grrr.. Should be in columns as: a.originalMessage_ID, a.newMessage_ID, c.EMailAddress AS SenderAddress, d.EMailAddress AS NewAddress -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 2:29 PM To: CF-Talk Subject

RE: [OT] Zip Code Lookup

2002-11-15 Thread Jeff Beer
shameless_plug Check out http://www.dbactive.com and look at the CF_ZipRad custom tag. /shameless_plug -Original Message- From: charlie griefer [mailto:charlie;griefer.com] Sent: Friday, November 15, 2002 2:53 PM To: CF-Talk Subject: [OT] Zip Code Lookup Hey List: I'm building an

RE: Mystery files

2002-11-08 Thread Jeff Beer
Performance Monitor config files. Your server is probably set to watch for whatever monitoring it does - too many hung threads, etc... -Original Message- From: Everett, Al [mailto:AEverett;askallied.com] Sent: Friday, November 08, 2002 4:30 PM To: CF-Talk Subject: Mystery files What

RE: problems with cfgraph

2002-10-30 Thread Jeff Beer
There's an issue with CFGRAPH in 5.0 - if you pass values with 0 the java something or other will start looping and spin out of control, sucking up memory and processor until the box blows up. There's a simple hot fix at macromedia.. -Original Message- From: Uwe Degenhardt

RE: problems with cfgraph

2002-10-30 Thread Jeff Beer
There's an issue with CFGRAPH in 5.0 - if you pass values with 0 the java something or other will start looping and spin out of control, sucking up memory and processor until the box blows up. There's a simple hot fix at macromedia.. -Original Message- From: Uwe Degenhardt

RE: CFIF and CFSWITCH brain freeze

2002-10-30 Thread Jeff Beer
Reverse the evaluation order. Since CGI.ScriptName DOES contain default.cfm it evaluates as TRUE and never looks at the other conditions. -Original Message- From: Pete Ruckelshaus [mailto:cflist;ruckelshaus.com] Sent: Wednesday, October 30, 2002 10:22 AM To: CF-Talk Subject: CFIF and

push query to Excel

2002-10-30 Thread Jeff Beer
Hi all, Brain fart time - I can't remember how to push a query result to Excel in the end user's browser.. grr.. anyone have those two lines of code handy? ~| Archives:

RE: OT:Yahoo moving to PHP

2002-10-30 Thread Jeff Beer
In 1991, my IT department head, a C programmer by trade, told me (paraphrasing) Visual Basic? Don't waste time learning that - it will never be accepted ... you'll never make a dime ... Well, 11 years later there are many people making a lot of dimes from VB, writing very powerful, functional

RE: Binary marketing tree in CF/SQL

2002-10-25 Thread Jeff Beer
Isaac - thanks for the information. I'm going to take your pointers and start doing some data modeling to see if I can make this work. I wonder if I can denormalize the data into a 4th table as things progress to keep the madness to a minimum.. -Original Message- From: S. Isaac Dealey

Binary marketing tree in CF/SQL

2002-10-24 Thread Jeff Beer
I have a client who wants me to build a No-flush Binary marketing application in SQL and CF. I've looked at several examples and really don't know how to approach building an infinite tree structure of this sort. Can anyone point me to resources for learning how to develop this type of system,

OT: online payment processing w/out merchant account

2002-10-15 Thread Jeff Beer
We're new, and we sell adult merchandise, so getting a merchant account is pretty tough. We should be able to have our own merchant account in two or three months. I'm looking for a payment processing solution where a third-party provides the merchant account/credit card processing services, but

RE: Dynamic Shipping Calculations

2002-10-15 Thread Jeff Beer
http://www.intershipper.com/integrate.asp -Original Message- From: chris.alvarado [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 15, 2002 3:36 PM To: CF-Talk Subject: Dynamic Shipping Calculations I have a fairly sizeable E-Commerce project on the horizon. I am currently in the R

RE: Can a subscription site be classed as shipped goods

2002-10-07 Thread Jeff Beer
As long as the subscription starts immediately upon payment, you can charge the card. If the subscription starts next month or at some future point in time, you have to wait. Basically, you can grab the cash as soon as you deliver the contract, whether it's for service or material goods or

OT: CF_TwoSelectsRelated beg

2002-10-03 Thread Jeff Beer
Could someone send me a copy of Nate Weiss' TwoSelectsRelated or point me to a site where I can grab it? devex.macromedia appears to be down, and Nate's site is mostly offline. TIA, Jeff ([EMAIL PROTECTED], [EMAIL PROTECTED])

RE: OT--- Close Main window

2002-10-02 Thread Jeff Beer
If you opened the window with script you can close it. Otherwise, you will get the prompt. In other words, if you popped up a new window with Javascript, then did a window.close or whatever, you won't get that warning. Any existing window will give that warning when you try to close it. I

RE: multiple inserts

2002-09-27 Thread Jeff Beer
Your multiple form field contents will show up in lists, as in: Form.firstname = Jim,Tom,Sandy,Tina Simply loop over the lists using LISTLEN in your loop: !--- check for content. Client side validation should check for data in all three fields --- cfif LEN(ListFirst(form.firstname))

SOT: sending e-mail using cffile to pickup dir

2002-09-20 Thread Jeff Beer
a ton of mail in the pickup dir.. would go much faster. Thanks, Jeff Beer __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk

RE: SOT: sending e-mail using cffile to pickup dir

2002-09-20 Thread Jeff Beer
-Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Friday, September 20, 2002 12:44 PM To: CF-Talk Subject: Re: SOT: sending e-mail using cffile to pickup dir Jeff Beer wrote: Does anyone have an example of a properly formatted message that can be dropped

RE: Interesting: Macromedia Resource Kit

2002-09-06 Thread Jeff Beer
It bothers me when a company that sells development software has to sell a developer kit. If a company sold an application, like Microsoft Word or Quicken, then an SDK makes sense - exposing the API, etc. But, when the core software is a development product, a developer's kit just seems like

RE: Replacement for CFX_fMAKETREE

2002-09-06 Thread Jeff Beer
Mike - any news on the new CF_MakeTree tag? Is it available? -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 10:07 AM To: CF-Talk Subject: RE: Replacement for CFX_fMAKETREE So where you putting the new tag up so we may look at?

RE: programmer vs. developer

2002-08-29 Thread Jeff Beer
Do you work for HR at Microsoft? cf_grin / -Original Message- From: Rafael (Alan Bleiweiss) [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 10:15 AM To: CF-Talk Subject: Re: programmer vs. developer Programmer - one who systematically re-maps the logic, thinking, and

  1   2   3   >