Re: Mach II was RE: MVC and MX

2003-07-23 Thread Oliver Tupman
And for a half-decent intro to Mach II including the basic concepts and a 3-part getting started tutorial, visit: http://beta.fusebox.org/index.cfm?method=FuseboxMX.basicConcepts Oliver Tupman Key Systems Geotechnical Mike Brunt wrote: William, I am pretty certain I have this in my

Throwing exceptions from CFCs

2003-07-23 Thread Oliver Tupman
Hi all, I'm writing a whole bunch of CFCs for our company Intranet and I've come up on this problem time and time again: I code a lot of my CFCs in near-pure CFScript. For some reason in CFMX, Macromedia have provided us with the try and catch statements, but not a throw statement/function.

Red sky

2003-07-23 Thread John McCosker
Are there any free updates for CFMX from the Red Sky beta programme, to quote the macromedia website, It has been determined the lifeguard thread hangs when trying to evaluate connections on long running queries that it thinks are dormant connections. This locks the entire connection pool.

RE: Red sky

2003-07-23 Thread Tony Weeg
unofficially: not from what i have heard/seen. its close tho', and rocks i can say that!!! :) tony -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 6:54 AM To: CF-Talk Subject: Red sky Are there any free updates for CFMX from the

RE: Red sky

2003-07-23 Thread Sandy Clark
My reading of this is that Red Sky itself will be a free update when it is released. -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 6:54 AM To: CF-Talk Subject: Red sky Are there any free updates for CFMX from the Red Sky beta programme,

RE: Red sky

2003-07-23 Thread Craig Dudley
Correct ;-) -Original Message- From: Sandy Clark [mailto:[EMAIL PROTECTED] Sent: 23 July 2003 12:48 To: CF-Talk Subject: RE: Red sky My reading of this is that Red Sky itself will be a free update when it is released. -Original Message- From: John McCosker [mailto:[EMAIL

RE: Red sky

2003-07-23 Thread John McCosker
What I took from it was there will be an updater 4 for current versions of MX, that have had outstanding bugs and have been fixed during the Red Sky beta test, which I think is leading to the new realease of MX, and updaters for pre MX. -Original Message- From: Sandy Clark [mailto:[EMAIL

RE: Red sky

2003-07-23 Thread Robertson-Ravo, Neil (RX)
NDA NDA... It does rock, its a point release (not an updater) -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED] Sent: 23 July 2003 12:54 To: CF-Talk Subject: RE: Red sky What I took from it was there will be an updater 4 for current versions of MX, that have had

Re: Red sky

2003-07-23 Thread Thomas Chiverton
On Wednesday 23 Jul 2003 12:53 pm, John McCosker wrote: that have had outstanding bugs and have been fixed during the Red Sky beta test, which I think is leading to the new realease of MX, and updaters for pre MX. RedSky is a point release, thing of it as MX.1 (or .5 maybe !). It'll be free

Query String

2003-07-23 Thread Randell B Adkins
Does anyone know how to search the URL line for an ANCHOR tag? Such as this is the URL: http://www.mydomain.com/showthis.cfm#MyItem1 That would relate the to A NAME anchor. But if this anchor is called, I want it to be highlighted. I tried CFIF CGI.SCRIPT_NAME CONTAINS MyItem1 however this

RE: CFForm madness. 0_0

2003-07-23 Thread Ihrig Paul E Cont 88 ABW/EM
wish qforms was built into dwmx.. cough cough... seems like a standard way of validating for over 3 years now... -paul ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: Query String

2003-07-23 Thread Thomas Chiverton
On Wednesday 23 Jul 2003 13:21 pm, Randell B Adkins wrote: Does anyone know how to search the URL line for an ANCHOR tag? Such as this is the URL: http://www.mydomain.com/showthis.cfm#MyItem1 A quick dump of the CGI var's says you can't, I guess because #MyItem1 isn't part of the URI, it's a

Re: CFForm madness. 0_0

2003-07-23 Thread Matthew Walker
Maybe Macromedia could buy Dan -- he does need a job after all! ;-) Matthew Walker Electric Sheep Web http://www.electricsheep.co.nz/ - Original Message - From: Ihrig Paul E Cont 88 ABW/EM [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, July 24, 2003 12:23 AM Subject:

Re: ot: dba sql question

2003-07-23 Thread John Paul Ashenfelter
- Original Message - From: Jochem van Dieten [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, July 22, 2003 3:51 PM Subject: Re: ot: dba sql question Tony Weeg wrote: why wouldn't I use tinyInt for boolean? Because it is not a boolean. Jochem Though depending on

RE: ot: dba sql question

2003-07-23 Thread Tony Weeg
and space, density of the table are things we are trying to consider...so that's what one of the points of my question was...as far as space goes... does adding small columns like that, or large columns for that matter over time, adversely affect the database, its use of space etcagain, we are

RE: Red sky

2003-07-23 Thread John McCosker
Is there proposed date for this point release? -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: 23 July 2003 13:09 To: CF-Talk Subject: Re: Red sky On Wednesday 23 Jul 2003 12:53 pm, John McCosker wrote: that have had outstanding bugs and have been fixed during

Re: Red sky

2003-07-23 Thread Jochem van Dieten
John McCosker wrote: Is there proposed date for this point release? This summer. Jochem ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: ot: dba sql question

2003-07-23 Thread Michael T. Tangorre
Tony, I am pretty sure that an integer type will not allow for the storage of 0s and 1s unless the integer began with a 1. If it begins with a 0 it is ignored because an integer beginning with a 0 is an insignificant digit. 1010101 would be stored as 1010101. Also keep in mind the

Re: ot: dba sql question

2003-07-23 Thread John Paul Ashenfelter
If you're frequently using MS-SQL Server 2000, get Inside SQL Server 2000 by Kalen Delany (that's close to right). You can learn all about the data storage internals of SQL-Server (though the docs in Books Online discuss the whole one bit taking a byte issue as well, though not as clearly). While

RE: ot: dba sql question

2003-07-23 Thread Tony Weeg
true indeed and the insight, is personally how I feel...i just needed someone to validate :) remembering hard positions in a binary string is for the birds when you can have named columns that let you know what is what, and then just validate the value checking for its 0 or 1 value ;) and

RE: ot: dba sql question

2003-07-23 Thread Tony Weeg
is there a dbcc that will show the database dump? is it dbcc showcontig (datbaseName) ?? thanks. tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: John Paul Ashenfelter

Re: ot: dba sql question

2003-07-23 Thread Jochem van Dieten
Tony Weeg wrote: again, we are trying to figure out if we should use a int field, keep the values in an ordered binary string of 0's and 1's, rather than multiple columns (some could be added on later) of either bit/tinyInt datatype that hold virtually the same info, on/off, yes/no, 0/1

Re: ot: dba sql question

2003-07-23 Thread Michael T. Tangorre
The books online that come with MS SQL Server are priceless in my opinion. If you have the time, even if you do not :) read through some of it, or at least the idnex. I have a few books on SQL Server and nothing beats the books online for the quick and dirty explanation and example. Mike -

RE: ot: dba sql question

2003-07-23 Thread Tony Weeg
makes sense...and I will definitely take that into consideration! tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Wednesday, July

RE: OT JavaScript question

2003-07-23 Thread Craig Dudley
Hand is not valid css2, use pointer, ie IMG { cursor : pointer; } I'm pretty sure 'hand' only works on ie. It deffinatley doesn't work on Mozilla/NS6+ -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED] Sent: 22 July 2003 22:20 To: CF-Talk Subject: Re: OT JavaScript

Re: OT JavaScript question

2003-07-23 Thread Matthew Walker
Yeah, it's the only one I could think of without opening Topstyle. I guess I'm colonised by Microsoft. - Original Message - From: Craig Dudley [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, July 24, 2003 1:04 AM Subject: RE: OT JavaScript question Hand is not valid

CFOBJECT and 2D array

2003-07-23 Thread AhnuNahki
Im trying to make an array of objects in CFMX. This array will be a 2 dimensional array. My problem is that I dont know how to access the elements of a 2D array using CFOBJECT and Im not sure how to specify the creation of a 2D array in the constructor method. Here is what little I know:

RE: Query String

2003-07-23 Thread Raymond Camden
cfset anchor = listLast(theURL,##) You'd want to first check to see if # is inside. (Note, the ## above simply means # since we have to escape # in CF.) === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

RE: Throwing exceptions from CFCs

2003-07-23 Thread Raymond Camden
The questions are a) how do I either modify a thrown exception that I wish to rethrow (but with extra data) Why not make your throw method take the relevent args, message, detail, etc so you can pass them in? ===

executive.log is missing

2003-07-23 Thread Matthew Friedman
I am doing a consulting job for a client and logged into there CF Admin system to view the logs and the executive.log is missing? Any thought on where it is, the system is set to purge the client data once a day. Matthew Friedman

Re: Building CF Community

2003-07-23 Thread Doug White
Looking for developer volunteers! I will be hosting the new web site CFMLExchange.com and will be looking for contributing developers to assist in designing and developing the Web Site. Database will be SQL2K, PostgreSQL, OR MySQL, depending on user preferences. Interested parties may contact

RE: Problem with CFFILE

2003-07-23 Thread Nathan Smith
You will have to make sure whatever user you use/create can run services. There are special user permissions that will need to be set. I think there is a knowledgebase article... -Original Message- From: Christopher J. Sills [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 22, 2003 8:06 AM

CF Banner Ad Management

2003-07-23 Thread Cutter (CF-Talk)
Need suggestions on a dynamic, easy to integrate, CFMX and mySQL compatible Banner Ad Management system. What are you using? Cutter ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: CF Banner Ad Management

2003-07-23 Thread Russ
phpMyAds -- if you're using mySQL, you should be able to use PHP, I'm assuming. It's the best, it's free. -Original Message- From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 9:20 AM To: CF-Talk Subject: CF Banner Ad Management Need suggestions on

RE: cfchart

2003-07-23 Thread Dave Watts
It helped alot. hmm.. is it possible for us to show the values for each individual slice by showing the values in a box and pointing to the respective slices..? I don't think so, but if you use the Flash output format, the user will see that information when she moves the mouse over the

RE: Query String

2003-07-23 Thread Randell B Adkins
Thanks! [EMAIL PROTECTED] 07/23/03 09:52AM cfset anchor = listLast(theURL,##) You'd want to first check to see if # is inside. (Note, the ## above simply means # since we have to escape # in CF.) === Raymond Camden,

Re: CF Banner Ad Management

2003-07-23 Thread Ryan Mitchell
http://www.fuseads.com On 23/7/03 15:20, Cutter (CF-Talk) [EMAIL PROTECTED] wrote: Need suggestions on a dynamic, easy to integrate, CFMX and mySQL compatible Banner Ad Management system. What are you using? Cutter ~|

RE: CFOBJECT and 2D array

2003-07-23 Thread Dave Watts
Im trying to make an array of objects in CFMX. This array will be a 2 dimensional array. My problem is that I dont know how to access the elements of a 2D array using CFOBJECT and Im not sure how to specify the creation of a 2D array in the constructor method. Here is what little I know:

ergonomics

2003-07-23 Thread Mary Jo Sminkey
Ah, here's a problem I know what's it like to live with! I have chronic tendinitis in both elbows from computer work, and when it first hit me, it was so bad that I had to stop working for several months until we got it cleared up. It will however, always be a problem for me. That's the worst

Re: Throwing exceptions from CFCs

2003-07-23 Thread Oliver Tupman
Raymond Camden wrote: The questions are a) how do I either modify a thrown exception that I wish to rethrow (but with extra data) Why not make your throw method take the relevent args, message, detail, etc so you can pass them in? Yeah, I thought of that. The problem is that cfthrow's

Re: CFOBJECT and 2D array

2003-07-23 Thread AhnuNahki
Basicly I dont want to use a CF array. I want to make some array using the CFOBJECT tag, say an array of ints int[][] someInt Now I want to be able to do a cfset and access an element of that array I just created using CFOBJECT cfset someInt[0][0] = 2 cfset someInt[0][1] = 99 But when I make

on-line stores

2003-07-23 Thread Bruce Sorge
Because I am lazy and do not want to re-invent the wheel, I was wondering what you all would recommend for a pre-built on-line store (except AbleCommerce of course) that is easily extensible, open source and inexpensive (under a grand as I am small time right now). I have rolled my own store

Re: Red sky

2003-07-23 Thread Christian Cantrell
On Wednesday, July 23, 2003, at 07:53 AM, John McCosker wrote: What I took from it was there will be an updater 4 for current versions of MX, that have had outstanding bugs and have been fixed during the Red Sky beta test, which I think is leading to the new realease of MX, and updaters

Re: CF Banner Ad Management

2003-07-23 Thread Critz
oi Russ!! yeah but this is not on in my opinion: $content = phpMyAds Instalation has taken place!\n\n Name: .$name.\n Email: .$email.\n Date: .$now.\n URL: .$url.\n\nWiredPHP Email; mail(To: Stephen Craton [EMAIL PROTECTED], phpMyAds Instalation, $content, From: $name $email); last

RE: on-line stores

2003-07-23 Thread Mike Brunt
Bruce the best one I know of is Netready from Aloha Software, it is very good and full featured. http://64.77.60.169/aloha/nrhome/ Kind Regards - Mike Brunt Webapper Services LLC Web Site http://www.webapper.com Blog http://www.webapper.net Webapper Web Application Specialists -Original

RE: CF Banner Ad Management

2003-07-23 Thread Russ
Hey, I made the recommendation; you didn't say anything about that. Email address is a small price to pay for freeware. I've been using them for quite some time with issue or failure. -Original Message- From: Critz [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 10:05 AM

RE: Throwing exceptions from CFCs

2003-07-23 Thread Raymond Camden
Query - in what way do you need the exceptioncontext? If the error involves method foo and arg X, couldn't you just do cfthrow message=You passed X to method Goo. X needs to be over whatever. type=mycfc === Raymond Camden,

Re: on-line stores

2003-07-23 Thread Doug White
quickestore at $99.00 == Stop spam on your domain, use our gateway! For hosting solutions http://www.clickdoug.com ISP rated: http://www.forta.com/cf/isp/isp.cfm?isp_id=772 == If you are not satisfied with my service, my job

Re: Throwing exceptions from CFCs

2003-07-23 Thread Oliver Tupman
Raymond Camden wrote: Query - in what way do you need the exceptioncontext? If the error involves method foo and arg X, couldn't you just do cfthrow message=You passed X to method Goo. X needs to be over whatever. type=mycfc Yes I could, but that is not my primary problem. the primary

RE: Throwing exceptions from CFCs

2003-07-23 Thread Raymond Camden
Ah, so you need to know _who_ called your method in the incorrect way, right? === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia

Re: Red sky

2003-07-23 Thread Bryan Stevenson
Hey Christian, Perhaps you know whether or not MM partners will get Red Sky for free as well as part of the software we get as partners? Thanks Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED]

RE: Red sky

2003-07-23 Thread Heald, Tim
Red Sky will be free for all existing ColdFusion MX customers and will be released sometime this summer. Tim -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 11:23 AM To: CF-Talk Subject: Re: Red sky Hey Christian, Perhaps you know

RE: Throwing exceptions from CFCs

2003-07-23 Thread Raymond Camden
Just an FYI, when I cfthrow from the CFC, if I use try/catch in my caller, I _can_ see tagcontext. Here is my cfc: cfcomponent output=true cffunction name=test cfset throw(Test one) cfreturn now() /cffunction

RE: Red sky

2003-07-23 Thread Robertson-Ravo, Neil (RX)
IT IS FREE! -Original Message- From: Heald, Tim [mailto:[EMAIL PROTECTED] Sent: 23 July 2003 16:22 To: CF-Talk Subject: RE: Red sky Red Sky will be free for all existing ColdFusion MX customers and will be released sometime this summer. Tim -Original Message- From: Bryan

Re: Throwing exceptions from CFCs

2003-07-23 Thread Oliver Tupman
Raymond Camden wrote: Ah, so you need to know _who_ called your method in the incorrect way, right? Erm, wrong way round - I'm after being able to know _where_ the exception occurred. For example, the following listing was caused by the cfthrow on line 65. The Error Occurred in

Re: Red sky

2003-07-23 Thread Bryan Stevenson
Thanks Tim..but partners don't PAY for software and COULD be considered as NOT customersthat's why I asked ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED]

Need mail app advice

2003-07-23 Thread Jack Dalaa
Need mail app advice I'm in the process of scoping out a corporate mail handling application. Here's the scenario: Emails are being sent from all kinds of sources to one POP3 account. I have to download those messages, gather specific information from the email for statistics purposes, and then

RE: Red sky

2003-07-23 Thread Heald, Tim
Are you honestly a partner that isn't running some PURCHASED CF server? Last partner I worked at the software we received was for demonstration and development, not production. Unless that changed recently? I notice your site is in CF. That would be production yes? Timothy Heald Information

RE: Throwing exceptions from CFCs

2003-07-23 Thread Raymond Camden
When I do cfset throw() The tag context's first element line # _is_ the line number of the cfthrow in the throw method, however item 2 is is the method that called throw, and item 3 is the caller tag. This covers everything. I modified my cfc method to do this: cffunction name=test

Re: Need mail app advice

2003-07-23 Thread Michael T. Tangorre
Could you explain a little more why all the emails come to one address? - Original Message - From: Jack Dalaa [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 11:32 AM Subject: Need mail app advice Need mail app advice I'm in the process of scoping out

RE: Red sky

2003-07-23 Thread Philip Arnold
Perhaps you know whether or not MM partners will get Red Sky for free as well as part of the software we get as partners? It's free to everyone but you g Macromedia now runs a Charge Bryan policy, didn't you know? weg ~|

Re: Need mail app advice

2003-07-23 Thread Howie Hamlin
You can route your mail based on most anything using iMS. The iMS SMTP server is controlled entirely by ColdFusion or CFMX. Your templates are provided with details about the contents of the message and you can use these details to route the mail as-is. For example, say I want all mail

Re: Red sky

2003-07-23 Thread Bryan Stevenson
Relax Tim.and the software is licenced for development...DOH! Yes our site is in CF and the ISP we host with has a licenced copy. Geesh...ask a simple question and get beat up over it Christian...are ya out there ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric

Consuming Web Services - CF 5

2003-07-23 Thread Charlie Griefer
Hey All: Using CF 5, and cf_soxml to consume a web service. However, we're behind a proxy. I've found the following code: cfscript obj = CreateObject(java, java.lang.System); obj.setProperty(http.proxyHost, your_proxy_host); obj.setProperty(http.proxyPort, your_proxy_port);

Re: Throwing exceptions from CFCs

2003-07-23 Thread Oliver Tupman
I noticed that too, while it may partly fulfill part (b) of my original post: b) how do I throw my own exceptions with an exception context? it does not fulfill part (a) a) how do I either modify a thrown exception that I wish to rethrow (but with extra data) I may of course be after too

Re: Red sky

2003-07-23 Thread Bryan Stevenson
LOLthanks Phil...needed that ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com

Need mail app advice

2003-07-23 Thread Jack Dalaa
Sure. Could be any number of things, like [EMAIL PROTECTED], and depending on the support request content, it needs to be redirected to the correct department/individual. Jack Could you explain a little more why all the emails come to one address? - Original Message - From: Jack

Re: Throwing exceptions from CFCs

2003-07-23 Thread Oliver Tupman
Raymond, I still think we're not quite on the same level here. That or my MX is acting weird. I do indeed get the context, but it still comes from the cfthrow, not the Throw() function. Try the following component and just call test() without any exception handling around it: cfcomponent

Need mail app advice

2003-07-23 Thread Jack Dalaa
Interesting, thanks. I'll take a look at it. Jack You can route your mail based on most anything using iMS. The iMS SMTP server is controlled entirely by ColdFusion or CFMX. Your templates are provided with details about the contents of the message and you can use these details to route

Re: Red sky

2003-07-23 Thread Christian Cantrell
On Wednesday, July 23, 2003, at 11:23 AM, Bryan Stevenson wrote: Perhaps you know whether or not MM partners will get Red Sky for free as well as part of the software we get as partners? I imagine you will. All you need is a valid license key to make it work. I'll double-check, though.

RE: Red sky

2003-07-23 Thread Ben Forta
Yes, partners will have access to Red Sky. --- Ben -Original Message- From: Christian Cantrell [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 11:56 AM To: CF-Talk Subject: Re: Red sky On Wednesday, July 23, 2003, at 11:23 AM, Bryan Stevenson wrote: Perhaps you know

Re: Red sky

2003-07-23 Thread Bryan Stevenson
Thanks Ben Christian...didn't want to get lost in the semantics ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner

Re: Need mail app advice

2003-07-23 Thread Doug White
A much simpler method would be to allow all email go through the server as addressed, and add an entry to the server to BCC all email to your application, where you can do your thing with it without having to do all the coding to forward it (thus doubling the load on the mail server)

RE: on-line stores

2003-07-23 Thread Bryan Love
Try NetReady. It has everything you listed below, including PayPal integration, and then some. It's also very well written and easy to modify. It's a very powerful commerce engine and you just can't beat it for the price... http://aloha-webdesign.com

Re: MVC and MX

2003-07-23 Thread William H Bowen
Thanks to all that have sent the BLOGMX file! I appreciate it. will - William H Bowen Marketing Communications Manager ALSTOM TD Energy Automation Information William H Bowen wrote: Was doing some research on MVC and MX after being pointed to www.benorama.com last week, saw the 10 part

RE: Throwing exceptions from CFCs

2003-07-23 Thread Raymond Camden
Why not use the extendedInfo attribute of cfthrow? Note that you can modify many attributes. The type, the message, the detail, the error code, and extendedInfo. This gives you a wealth of crap you can customise. Also, what's cool about using a Throw() method in a CFC is that you can hard code

RE: Throwing exceptions from CFCs

2003-07-23 Thread Raymond Camden
I don't believe you can modify the exception object like that. I think you would need to use the proper methods to update the values. See my last email. Can't you use the standard attributes of cfthrow to pass a lot of detail back? I ran your code and I still get the right results. My

Funky characters on output

2003-07-23 Thread Kelly
ok it was as simple as selecting the unicode check box on the datasource, silly me... I had all the datatypes as N types like nvarchar and ntext just didn't have that box checked. Everything seems fine now. Thanks for your suggestions everyone. Kelly

Email Variable Syntax Problem

2003-07-23 Thread Hawkes, Keith A CIV
I have a query for getting customer's name to put into an autogenerated email: cfquery name=email_closure datasource=helpdesk SELECT cust_f_init + cust_m_init + cust_lname AS email_address, resolution FROM helpdeskmain WHERE ticketid = #recordset1.ticketid# /cfquery However, when I try to

Re: Email Variable Syntax Problem

2003-07-23 Thread Randell B Adkins
Add a TRIM around the variable: #email_closure.email_address# It might be a space in variable. [EMAIL PROTECTED] 07/23/03 01:30PM I have a query for getting customer's name to put into an autogenerated email: cfquery name=email_closure datasource=helpdesk SELECT cust_f_init + cust_m_init +

Re: Email Variable Syntax Problem

2003-07-23 Thread Howie Hamlin
Have you tried removing the mailto:; from the address? Regards, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server ((())) PrismAV is Coming ((())) Please vote for iMS here:

SOT: NULL Madness

2003-07-23 Thread David K
Brain_Cramp Trying to do a simple select query that selects all records with an empty value in an integer column. The table contains 122 records where 12 records have an empty value in the target column. Here's my query... cfquery name=getData datasource=cfDS SELECT * FROM tblCustomers

Re: SOT: NULL Madness

2003-07-23 Thread Jerry Johnson
Logic correct, syntax wrong... ordercount IS NULL Jerry Johnson [EMAIL PROTECTED] 07/23/03 12:37PM Brain_Cramp Trying to do a simple select query that selects all records with an empty value in an integer column. The table contains 122 records where 12 records have an empty value in the

RE: NULL Madness

2003-07-23 Thread Josh Remus
WHERE orderCount IS NULL? -Original Message- From: David K [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 12:37 PM To: CF-Talk Subject: SOT: NULL Madness Brain_Cramp Trying to do a simple select query that selects all records with an empty value in an integer column.

RE: NULL Madness

2003-07-23 Thread Adrian Lynch
Change = to IS and see what happens Ade -Original Message- From: David K [mailto:[EMAIL PROTECTED] Sent: 23 July 2003 17:37 To: CF-Talk Subject: SOT: NULL Madness Brain_Cramp Trying to do a simple select query that selects all records with an empty value in an integer column. The

Re: SOT: NULL Madness

2003-07-23 Thread Jochem van Dieten
David K wrote: cfquery name=getData datasource=cfDS SELECT * FROM tblCustomers WHERE orderCount = NULL WHERE orderCount IS NULL Jochem ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

RE: NULL Madness

2003-07-23 Thread Dave Sueltenfuss
You need to use this for null cfquery name=getData datasource=cfDS SELECT * FROM tblCustomers WHERE orderCount is NULL /cfquery And this for records that are not null cfquery name=getData datasource=cfDS SELECT * FROM tblCustomers WHERE orderCount is not NULL /cfquery Dave

Re: NULL Madness

2003-07-23 Thread David K
My bad... I retract that... - Original Message - From: Josh Remus [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 9:40 AM Subject: RE: NULL Madness WHERE orderCount IS NULL? -Original Message- From: David K [mailto:[EMAIL PROTECTED] Sent:

Re: NULL Madness

2003-07-23 Thread David K
IS is not a valid operator name inside cfquery. - Original Message - From: Josh Remus [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 9:40 AM Subject: RE: NULL Madness WHERE orderCount IS NULL? -Original Message- From: David K [mailto:[EMAIL

OT: Style sheets Browsers...

2003-07-23 Thread Che Vilnonis
I recently used browsercam.com to crawl my sites. WOW, was I in for a rude awakening! That got me thinking, how do YOU, as developers, write style sheets in order to cover your a$$ with the many variants of browsers/operating systems. Is there any cfifcfelse logic that can be deployed? Can

actionscript - cf studio help files...

2003-07-23 Thread Mark A. Kruger - CFG
A while back I downloaded a CF Studio help file updater for actionscript (flash mx). does anyone have the link or that file? I have a collegue who needs it. Thanks! -mk ~| Archives:

RE: Style sheets Browsers...

2003-07-23 Thread Barney Boisvert
If you can, avoid complex or detailed CSS stuff, because the simpler, older stuff is better supported across the board. When that's not possible, make a couple breakpoints in browser market and develop a single stylesheet for each block of browsers. Depending on your site, an IE block and an

Re: OT: Style sheets Browsers...

2003-07-23 Thread Jochem van Dieten
Che Vilnonis wrote: I recently used browsercam.com to crawl my sites. WOW, was I in for a rude awakening! That got me thinking, how do YOU, as developers, write style sheets in order to cover your a$$ with the many variants of browsers/operating systems. The most important step is to make

cf studio

2003-07-23 Thread Carol Thomas
I am looking for cold fusion studio 4.5.2 or 5.0. Can someone point me in the right directions. Thanks, Carol ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: Need mail app advice

2003-07-23 Thread David Delbridge
Which mail server software do you employ? Ipswitch's IMail, for example, includes scripting/filtering to do the kinds of things you describe. Would save you quite a bit of effort if your mail server supports this function natively. I don't know if this will fulfill your statistics-gathering

Need mail app advice

2003-07-23 Thread Jack Dalaa
Trouble is all messages are coming in to just one address, and each will have to be reviewed by CF to determine where it should be redirected to. Jack A much simpler method would be to allow all email go through the server as addressed, and add an entry to the server to BCC all email to your

Ticketing Applications

2003-07-23 Thread webmaster
We currently have three clients online that are in need of ticketing applications to integrate into their site in some manner. Any leads appreciated! Regards, Eric J. Hoffman Technology Tamer DataStream Connexion www.datastreamconnexion.com

Re: OT: Style sheets Browsers...

2003-07-23 Thread David Delbridge
Hi Che, I sometimes use cfbrowser by Chris Sgaraglino (www.ilgm.com) to determine the visitor's browser, version and OS. Create separate style sheets for each specific configuration (AOL.css, MSIE.css, NS.css, etc.) and then call those with the ColdFusion variable returned by cfbrowser. For

RE: Ticketing Applications (clarification)

2003-07-23 Thread webmaster
These are ticketing applications as in puchasing tickets for the events at these theatres. :-) Eric -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 12:52 PM To: CF-Talk We currently have three clients online that are in need of

Unwanted control characters in text area

2003-07-23 Thread Shawn Grover
We have a text area that allows a user to enter HTML code. This works fine, but we are seeing unwanted characters added to the field value. Specifically the character #160;. We have been unable to find where this character is comming from. The process is as follws: 1) user enters HTML in the

  1   2   >