EVENT: CFUN-02 LAST day for Early Bird and ColdFusion MX info

2002-04-30 Thread Michael Smith
The CFUN-02 Early Bird discount ends today 4/30/02. Sign up now! at http://www.cfconf.com/cfun-02/ *** New Flash *** The next version of ColdFusion - CF MX has been announced - see below for details. *** New Flash *** Come to the CFUN-02 ColdFusion

Re: CFX C++ API Documentation/Tutorials

2002-04-30 Thread Jeffry Houser
They are pretty light. Make sure you look at both the Developing ColdFusion MX Applications and the CFML Reference. They both have information. Ben Forta's advanced book has information on CFX C++ (at least the 4.0 version did ). I'd be surprised if the WROX Professional CF book

RE: CFX C++ API Documentation/Tutorials

2002-04-30 Thread BillyC
The Wrox book really does nothing other than list the classes available, and has some fairly useless examples. For an experience C++ coder, probably sufficient. For a light C++ guy like me, I managed to hack some stuff out using the Wrox book (after six beers no less ! ;) If you're a CF

Need Help - Page too big

2002-04-30 Thread Shawn Grover
A little off topic but please bear with me, it's kind of a weird problem... We are converting an existing desktop application to the web verbatim (the user should not be able to tell the difference between the two). That said, I have a rather complex page that has a 37 DIVs, 24 of which are

RE: Calling server code without reloading

2002-04-30 Thread Ron Hornbaker
Lets say I have a form field on a page. When I type in it, I want what I have typed to be sent to the server and something done to it. THe result of that something will come back to me and be loaded into a different form field. This should be done without reloading the page. Normally, I'd

RE: CFX C++ API Documentation/Tutorials

2002-04-30 Thread Jeffry Houser
At 04:16 PM 4/30/2002 -0500, you wrote: OT: Ever wonder why we still call it the Forta book, when he's listed as the editor (according to Amazon), not to mention nine other authors? :-P : smile: Because he wrote the first one? Or is it because that his name sells books (and there is no

RE: Need Help - Page too big

2002-04-30 Thread Dave Watts
The OnLoad event IS being used, but does not call the ChangeDiv function - but the ChangeDiv IS being called by the applet. So, the inevitable suggestion to use OnLoad isn't going to help any. Can you rewrite the ChangeDiv function so that it only does its stuff if the appropriate

Odd ?: Convert Filemaker to SQL

2002-04-30 Thread Eric J Hoffman
A client has a mess of tables (so to speak) in a Filemaker Pro 5 setup...what is the best way to migrate these things to SQL...is there a recommended process or software we should look at other than simply plopping that mess into SQL and sorting from there via DTS? Regards, Eric J. Hoffman

OT: Cost of Living in London

2002-04-30 Thread Deborah Curley
I know this is off-topic but it's possible I may be taking a job in London and wanted to get some information on the cost of living. I'm in Boston, Mass now. Feel free to e-mail me off-line ([EMAIL PROTECTED]). TIA, Deb _ Send

Re: Access table names

2002-04-30 Thread Owen Leonard
I had to also go to Tools-Security-User and Group Permissions, highlight 'MSysObjects', and check 'Read Data' before this would work (Access 97). This will solve problems I've had where I need to check for the existence of a table, but does this open another can of worms? Am I opening up some

RE: CFStudio DWMX hiccups

2002-04-30 Thread Vernon Viehe
Hey Erika, Can you recount the characters in the file name? My sources say that the preview release has a 28 character limit for file names (has to do with the 32 char limit for Mac names (28 + .XXX = 32). I haven't been able to duplicate the warning on my installation. Vern -Original

MX and CustomTags again

2002-04-30 Thread Shawn McKee
At install the server was set to /home/cfadm/neo/CustomTags but applications couldn't find the custom tags. I checked case and location and all was correct. I deleted that path from the server and went to add it back in and now I get this error message: Unable to add custom tag path

RE: Reclaiming Ctrl-3 (was: RE: CFStudio DWMX hiccups)

2002-04-30 Thread Erika L Walker-Arnold
I assigned a custom button to it in studio, but I guess I could use a snippet for it as well. Erika | -Original Message- | From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] | Sent: 30 April 2002 22:12 | To: CF-Talk |

RE: Need Help - Page too big - FIX

2002-04-30 Thread Shawn Grover
Thank you for your efforts Dave. I found the issue. Maybe it'll shed some light for someone else: The Tab applet would fire the related javascript function when the applet loaded to make sure the default tab was selected. What I didn't know was that the function could return false to indicate

Using CF to populate JS variables efficiently

2002-04-30 Thread Scott Weikert
Hey gang. Working on a little side project, that is very JS-heavy - do some reads from a DB, create and populate several Javascript arrays based on the DB queries (using CFLOOP, generally), so that the page, once loaded, doesn't need to go back to the server for more data. I'm trying to work up

RE: MX and CustomTags again

2002-04-30 Thread Matt Liotta
What version of CFMX are you running? -Matt -Original Message- From: Shawn McKee [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 3:11 PM To: CF-Talk Subject: MX and CustomTags again At install the server was set to /home/cfadm/neo/CustomTags but applications couldn't

Re: Dollarformat -vs- Numberformat

2002-04-30 Thread Bud
On 4/30/02, Hatton Humphrey penned: Here's the problem: I recently added a summary report to a financial calculation page. The page has been using NumberFormat(tot_tot+misc_tot,9-$999,999,999.99) for several years (the application has been in live use since around 1998). The report that I

Re: CFX C++ API Documentation/Tutorials

2002-04-30 Thread Howie Hamlin
Look at www.intrafoundation.com. There are tons of examples and source code for cfx tags there. HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com - 631-737-4668 x101 inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server Find

Re: Using CF to populate JS variables efficiently

2002-04-30 Thread Bryan Stevenson
WDDX ;-) Bryan Stevenson VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com

Forums problem resolved

2002-04-30 Thread Vernon Viehe
We experienced a problem with a few of the new Preview Release forums, but it's been resolved. I noticed one message on one of the mailing lists mentioned it, so I wanted to let everyone know it's fixed! http://www.macromedia.com/support/forums/preview_release Thanks! Vernon Viehe Community

Re: Using CF to populate JS variables efficiently

2002-04-30 Thread Jon Hall
cfwddx action=CFML2JS ... It is pretty easy, but I like to do it myself, because I'm a control freak I guess. Have you tried removing linebreaks in the array loop? jon - Original Message - From: Scott Weikert [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, April 30, 2002

RE: Calculating Taxes (at least not CFMX topic :)

2002-04-30 Thread Dirk Sieber
Paul, I had to deal with this for Canada a while back, so I'll put in my $0.02 (about, what, $0.05 Cdn these days? ;-) What I did - defined a couple of tax fields, consisting of a description and a tax rate, and then also defined a few other parameters for those fields. The first was an order,

Re: CFX C++ API Documentation/Tutorials

2002-04-30 Thread Lewis Sellers
On Tue, 30 Apr 2002 16:10:17 -0500, in cf-talk you wrote: Anyone know where I can get an API reference for building C++ CFX tags? The docs that come with CF server/studio are less than helpful. All you need to know about the API is in the cfx.h header file. (You have to include it in any c++

File Upload using CFFTP

2002-04-30 Thread Thanh Nguyen
One quick question about CFFTP. How do I get the local file name in the input tag so that the uploaded file will the same name as the local file? Thanks. __ Your ad could be here. Monies from ads go to

Re: BSD?

2002-04-30 Thread Jochem van Dieten
Justin Scott wrote: I can feel the heat of the flames already, but is a BSD native version of CFMX planned for the future? Does anyone know if the new Linux version will run on BSD this time around? Does BSD have a better or worse chance of getting a version than OSX? I have heard fabled

Re: Where's Advanced Security?

2002-04-30 Thread Jochem van Dieten
Dave Watts wrote: The SiteMinder engine and CF's interface to that engine have been banished to the hell from whence they came. To bad I can't find anything about OS level Sandboxes anymore (BTW, OS level Sandboxes didn't use SiteMinder at all). Means I have to setup security twice, once

RE: Where's Advanced Security?

2002-04-30 Thread Mike Brunt
Probably not the best of times to leave, as there will probably be quite an increase in demand for CF Hosting and related issues. What would you offer as an alternative? Kind Regards - Mike Brunt, CTO Webapper http://www.webapper.com Downey CA Office 562.243.6255 AIM - webappermb Webapper -

RE: Using CF to populate JS variables efficiently

2002-04-30 Thread Bryan Love
here's a thought... For quick array creation in JS do this: .. myArray = newArray(#quotedValueList(query.column)#); .. I wrote this ad-hoc, so the syntax might be a little off, but I believe that's it. +---+ Bryan Love Macromedia Certified

CFABORT after CFLOCATION?

2002-04-30 Thread Dave Carabetta
OK, I'm stumped. I know this post may be a bit long, but if you have good experience with CFLOCATION, *please* help me out here. I'm going crazy! I've been using forms that submit to themselves for a long time now. Nothing tricky: form submits to itself, detect the name of the submit button, run

RE: CFX C++ API Documentation/Tutorials

2002-04-30 Thread Ben Forta
Actually, four of them are brand new, but who's counting. :-) I know people refer to them as Forta books, and I am grateful for that association and recognition, but the fact is that others deserve credit too, and I do make a point of regularly stating that. The ColdFusion 5 Construction Kit

RE: CFABORT after CFLOCATION?

2002-04-30 Thread Bryan Love
what you are describing is not possible (as far as I know). I know it may *seem* like that's what's happening, but something else is going on here... Perhaps one of these is happening... 1. the custom tag may be called somewhere else as well and you don't realize it... 2. the cflocate is

RE: CFABORT after CFLOCATION?

2002-04-30 Thread Matt Liotta
Nothing else is processed after a cflocation or cfcontent tag. In this case of cflocation uses cfheader instead and you won't have a problem. -Matt -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 5:19 PM To: CF-Talk Subject: CFABORT

Re: Where's Advanced Security?

2002-04-30 Thread Jochem van Dieten
Mike Brunt wrote: Probably not the best of times to leave, as there will probably be quite an increase in demand for CF Hosting and related issues. Maybe for the market as a whole, but not very likely for our niche. What would you offer as an alternative? Currently we also offer ASP, PHP,

RE: Using CF to populate JS variables efficiently

2002-04-30 Thread Scott Weikert
Nice, wasn't aware of the 'quotedValueList' bit. :) But that only solves part of my problem. I've got several two-dim arrays that I have to loop on two different queries, see if there's a match, and then spit out arrayName[1stDim][2ndDim] = 1 to set the array value so I can test whether it's

variable not being cleared in a loop?

2002-04-30 Thread Aimee Abbott
I have something odd happening with a variable not being cleared. The trouble is with the notes field. I query it and get the value from the database. The notes field is almost always filled in, however there are a few times where it is not. If the notes field is blank, it will get filled

RE: Using CF to populate JS variables efficiently

2002-04-30 Thread Bryan Love
what is the original problem you are trying to solve? Are you trying to make one select box populate when another is picked? If so then there may be a more efficient way to solve your problem... Either way, tell the talk list what you are wanting to use JS for and perhaps a different

Re: CFStudio DWMX hiccups

2002-04-30 Thread Gyrus
Didn't intend this thread to become a DWMX-bashing session! There do seem to be some major omissions/steps back from the CF Studio perspective, but most of my questions were largely of the I've not really used DW much before, am I just missing a menu option - or has someone who's been using DWMX

RE: variable not being cleared in a loop?

2002-04-30 Thread Bryan Love
First of all your ORDER BY should probably start with title, since that is what you group by in your output. If you don't you will likely output the same title more than once by accident. Other than that you should be fine. A query row will NEVER inherit data from another query row.

RE: variable not being cleared in a loop?

2002-04-30 Thread Aimee Abbott
No, I can't order by title, I must order by date. This is a list of news releases and public notices ordered by date, descending. However, even if I do order by title the same trouble happens. This is the page ordered by date, I did order by title after your message and the trouble still

RE: variable not being cleared in a loop?

2002-04-30 Thread Matthew Walker
You should be grouping by reldate *IF* reldate is a date and no time. Then you don't need the !--- check to see if we have already printed the big date --- cfif #lastDate# not equal #relDate# trtd valign=top bgcolor=c6d6bd colspan=2font

RE: Using CF to populate JS variables efficiently

2002-04-30 Thread Scott Weikert
FYI, the quotedValueList thing helped a LOT. :) Ok, if any of you really care to know... I'm a fairly avid gamer, in the MMORPG genre. There's a new game coming up in the next few months. I contribute to a site for another, already existing game, that has a character builder app on it.

RE: Using CF to populate JS variables efficiently

2002-04-30 Thread Scott Weikert
Oh, I forgot... if you want to look at the two versions of the page, before and after JS improvements, http://daoc.catacombs.com/sb/ and http://daoc.catacombs.com/sb/index2.cfm No guarantees that, by the time you see this, I haven't rolled index2 over to index1. But the key is, check each

Re: variable not being cleared in a loop?

2002-04-30 Thread Justin Scott
If possible, try changing the name of the more generic fields in the database. I would also suggest scoping the variables to the query name within the output. One way to work around this problem would be to use logic similar to the code you're already using for the release date display. Set a

Re: variable not being cleared in a loop?

2002-04-30 Thread jeff tapper
Aimee - Seems like a variable scoping issue. do u have a variable earlier on the page (or cfincluded earlier) which had the name notes? even inside a cfoutput query=myQuery its still a good practice to scope all variables from that query as #myQuery.myfield# At 07:31 PM 4/30/2002 -0600,

Re: CFABORT after CFLOCATION?

2002-04-30 Thread James Sleeman
My question is: Why is the custom tag executing? Shouldn't the page stop processing after the cflocation call? If I put a CFABORT directly after the CFLOCATION call *within* the CFIF block, the custom tag still executes. However, if I place the CFABORT above the custom tag call, but *outside*

Re: variable not being cleared in a loop?

2002-04-30 Thread Aimee Abbott
I will check into the genericness of the fields. Could be that is causing me problems though it seems unlikely. I did what you suggested and it does work, but what a kludge! What causes this to happen? Any idea? In this project it really stood out so it was easy to notice but I worry

Re: CFStudio DWMX hiccups

2002-04-30 Thread James Sleeman
At least it wont crash as much as Studio...that's a plus. Damn straight! Haven't used it much, but stopping those bloody Access violations that wiped hours of work away at times has to be #1 hope for DWMX. Fingers crossed. Yeah, but it could do with a bit of a crash diet. Sitting idle

Am I the only one who uses CONNECTSTRING ? (MX rant)

2002-04-30 Thread James Sleeman
Ok, now the NDA is moot I can ask the wider community. One of the best features IMHO in CF5 was the introduction of CONNECTSTRING to enable us to have dynamic datasources, that is, DSN-less connections. Since CF5 came out I have used these almost exclusively, infact I have been able to

Re: CFABORT after CFLOCATION?

2002-04-30 Thread Dave Carabetta
My question is: Why is the custom tag executing? Shouldn't the page stop processing after the cflocation call? If I put a CFABORT directly after the CFLOCATION call *within* the CFIF block, the custom tag still executes. However, if I place the CFABORT above the custom tag call, but

RE: Am I the only one who uses CONNECTSTRING ? (MX rant)

2002-04-30 Thread Ben Forta
James, Yep, that's a rough one. I can tell you that the engineering team did not just write it off, they agonized over this one. This was not swept under the carpet at all, it was a tough decision, and while you use the feature most CFers in fact don't, something had to give. I'll forward your

RE: Am I the only one who uses CONNECTSTRING ? (MX rant)

2002-04-30 Thread Matthew Walker
Yes we use it everywhere. We generally use a shared host that provides one DSN per site. It's been nice to set up several databases on a site with no fuss, and no stuffing around with DSNs for local sites. Aside from losing that feature, it's a lot of queries to change. -Original

Re: CFABORT after CFLOCATION?

2002-04-30 Thread Dave Carabetta
what you are describing is not possible (as far as I know). I know it may *seem* like that's what's happening, but something else is going on here... See, I'm saying the same thing to myself too, but this code is so black-and-white (seemingly), that there's nothing that stands out. Here is

Re: CFABORT after CFLOCATION?

2002-04-30 Thread Dave Carabetta
Nothing else is processed after a cflocation or cfcontent tag. In this case of cflocation uses cfheader instead and you won't have a problem. Matt, Not sure what that second sentence means exactly. My understanding of how CFLOCATION works is exactly what you wrote in the first sentence,

Re: BSD?

2002-04-30 Thread Justin Scott
Didn't FreeBSD sell out to Sun to get a native J2EE implementation? I would expect you could get the Linux version of CFMX to run on that. I guess I'll have to wait until release to find out, hehe. That is, if they release a trial edition for linux anyway. -Justin Scott, Lead Developer

Re: Using CF to populate JS variables efficiently

2002-04-30 Thread Jon Hall
Two small changes will make this work in NS4/NS6/Moz much nicer, Mozilla/NS6 has this extremely instrusive autocomplete feature, which is causing some calulation problems when refreshing the page. Stick autocomplete=off in your form tag and it won't happen anymore. The left and right arrows

RE: CFABORT after CFLOCATION?

2002-04-30 Thread Matt Liotta
You can use the cfheader tag to do a server-side redirect just like cflocation does only better. Better in the fact that is doesn't screw up cookies and there should be no strange cfabort like symptoms. -Matt -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED]] Sent:

Re: CFABORT after CFLOCATION?

2002-04-30 Thread Paul Giesenhagen
Matt, I have heard that cfheader is better than cflocation What are some of the benefits of cfheader and some of the weaknesses of cflocation? (I Use cflocation alot and don't have any trouble with it ...so I am curious) Thanks Paul Giesenhagen QuillDesign http://www.quilldesign.com

RE: Where's Advanced Security?

2002-04-30 Thread Dave Watts
To bad I can't find anything about OS level Sandboxes anymore (BTW, OS level Sandboxes didn't use SiteMinder at all). Means I have to setup security twice, once using standard Windows Security for ASP and once for CF, instead of letting the OS take care of both for me. That's because

Re: CFABORT after CFLOCATION?

2002-04-30 Thread Dave Carabetta
You can use the cfheader tag to do a server-side redirect just like cflocation does only better. Better in the fact that is doesn't screw up cookies and there should be no strange cfabort like symptoms. Is this all that is needed (in place of the CFLOCATION call) to properly perform the

Re: Am I the only one who uses CONNECTSTRING ? (MX rant)

2002-04-30 Thread Jon Hall
How easy is it to integrate straight Java/JDBC stuff into MX, and turn the query into a CF query object? Because if that is possible, then this may do the trick... http://www.artima.com/legacy/answers/Sep2001/messages/1.html jon Ben Forta wrote: James, Yep, that's a rough one. I can tell

RE: CFABORT after CFLOCATION?

2002-04-30 Thread Dave Watts
Incidentally, is this a CF workaround for not being able to have CFLOCATION and setting a cookie on the same page as opposed to a JavaScript location.href call? Just curious. Yes, you can use CFHEADER to redirect the browser in the same page in which you use CFCOOKIE. When you use

web hosts

2002-04-30 Thread Jennifer Larkin
One of my clients is trying to decide upon a new webhost. The two that we're looking at are media3 and CrystalTech. We've heard good things about both (and I have good experience with media3). Has anybody had any problems with tech support from either of them? After an hour of being on hold

Re: web hosts

2002-04-30 Thread Paul Giesenhagen
CRYSTALTECH... period.. Media3 loads down their servers with many clients ... some people have good luck, but if you get stuck on a system with multiple heavy users, you are out of luck. I have been with crystaltech dedicated servers for over a year and they have been incredible! Good Luck!

RE: web hosts

2002-04-30 Thread Mark Leder
I second the motion - CRYSTALTECH. Have about 50 clients with them. GREAT GREAT support even at 3 AM PST, I talk to a live body on the phone who fixes my problem NOW! They keep you informed ahead of time if there are any scheduled maintenance items. Thanks, Mark -Original Message-

Re: Using CF to populate JS variables efficiently

2002-04-30 Thread Scott Weikert
No no, critiques are wonderful :) Right now, it's very utilitarian. Full design comes later. Right now I'm just trying to make sure it functions correctly. Thanks for the NS-oriented tips - I'll try that stuff out tomorrow. At 11:54 PM 4/30/2002 -0400, you wrote: Two small changes will make

Re: web hosts

2002-04-30 Thread Jennifer Larkin
At 12:10 AM 5/1/02 -0500, you wrote: CRYSTALTECH... period.. Media3 loads down their servers with many clients ... some people have good luck, but if you get stuck on a system with multiple heavy users, you are out of luck. I have been with crystaltech dedicated servers for over a year and they

RE: web hosts

2002-04-30 Thread Megan Cytron
Yep. Crystaltech is the only shared host I've used that hasn't made my life a living hell. And their Control Panel is a godsend. The only time I've ever had to use their tech support in the past two years was when I had them install some custom tags. Megan [EMAIL PROTECTED] Alpha 60 Design Shop

Re: web hosts

2002-04-30 Thread Douglas Brown
I know it is not on your list, but I like http://www.hostmysite.com excellent support!! Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: Jennifer Larkin [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, April 30, 2002 10:45 PM Subject: Re: web hosts

<    1   2   3