RE: Combining TWOSELECTSRELATED with a Keyword Search

2002-04-04 Thread Pascal Peters
I don't use the CT myself, but when a Category or Subcategory isn't selected, I suppose the form var will be an empty string. So instead of using ParameterExists (You should use isdefined if you're on cf4+) test for that empty string. -Original Message- From: [EMAIL P

RE: standby screen

2002-04-04 Thread Pascal Peters
If you're on cf5: use CFFLUSH. -Original Message- From: Steven Dworman [mailto:[EMAIL PROTECTED]] Sent: donderdag 4 april 2002 18:13 To: CF-Talk Subject: standby screen Is there a way I can show the user a message saying "processing" while a page is processing queries? How do I do this

CF MX and NDA

2002-04-04 Thread Michael Dinowitz
There's been a lot of public talk by Macromedia people about CF MX over the last year or so. It's been all spread out and unorganized (from our point of view) but because its public, it's past the NDA. I'd like to compile all of this public information together if possible so people who haven't

RE: Where is the best place to put business rules?

2002-04-04 Thread Kola Oyedeji
Sorry i should have better phrased my question what would you do in a third tier that you wouldnt put in the database or in the client? Kola > > > >What would happen if someone decided to update your database using Excel > >ODBC connection? The stored procedure wouldn't run. But if you had your

Multiple Line Chart using CFGRAPH

2002-04-04 Thread Dian Oktosoma
All, I need a solution to create multiple line chart in ColdFusion. CFGRAPH can only output one line, I need to create multiple line in my chart. Is there any FREE solution if I can't use CFGRAPH ? regards, mosos FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archi

RE: ISP Caching

2002-04-04 Thread Jerry Staple
JL We had problems but not with client vars but with sessions. Some users were stating that there profiles were swapping and vice versa even though the session vars were locked.We put it down to the proxy servers caching the page. To rectify the problem we just attached a random number on the en

Access Dbs on separate server?

2002-04-04 Thread Ian Lurie
Hi all, We're going to be setting up our own SQL server box. Is there any performance gain to be had by putting our Access dbs on that box, too? Thanks, Ian __ This list and all House of Fusion resources hosted by CFHosting.co

SQL problem - HELP?

2002-04-04 Thread Ian Lurie
We're getting this error: ODBC Error Code = 01000 (General warning) [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]ConnectionWrite (send()). SQL = "SELECT u.userID, r.accessTo... Just about every hour on our shared server. We're running SQL 7 on a separate server - actually our web host is.

Re: Web Chat Client

2002-04-04 Thread Jas Panesar
Chris, My personal choice and recommendation is Conference Room (http://www.conferenceroom.com) It *IS* a java client, (fully functioning demo on their site) however it excels in the following ways: 1) The Conference Room Server is basically a Windows based IRC Server. This means you can po

RE: Since when was fusebox ever supported or promoted by Allaire / Macromedia?

2002-04-04 Thread Jeffry Houser
At 10:58 AM 4/4/2002 -0500, you wrote: > > Since when was fusebox ever supported or promoted by Allaire > > / Macromedia? > >To the best of my knowledge, never. That is what I thought. > > http://www.amazon.com/exec/obidos/ASIN/0735712697/qid=10179238 > > 36/sr=1-5/ref=sr_1_5/002-7985215-1486

RE: REPOST: Re: CDONTS and ReplyTo

2002-04-04 Thread Dave Watts
> > > i don't know if that's entirely correct. is ASP more > > > efficient at creating/manipulating objects than CF? that's > > > all the calls do, at the base level. > > > > In general, it's certainly easier to work with COM interfaces > > in ASP compared to CF, with all the clunkiness in CFOB

RE: CFCACHE

2002-04-04 Thread Dave Watts
> Do I need to specify the second flush to flush index.cfm or > will the first flush take care of both index.cfm and > index.cfm?* > > 1. directory="#FilePath_2#" > expireurl="index.cfm?*"> > > 2. directory="#FilePath_2#" > expireurl="index.cfm"> If I recall correctly, t

OT: SQL Backup/Restore Question

2002-04-04 Thread Gieseman, Athelene
Recently someone told me something about MS SQL backup/restore that I would like to verify. I haven't been able to find anything in any books or on the MS site to clarify. So I thought I'd ask here for either a direct answer or a place to go search. The Scenario: Backups are done every night a

RE: Where is the best place to put business rules?

2002-04-04 Thread Dave Watts
> I've often wondered about this is there really a need for > a third tier, what would you put in the third tier that you > *couldn't* put in a stored proc apart from file operations? Well, given the fact that the vast majority of client-server and web applications are two-tier, you could make

RE: Structure Sorting

2002-04-04 Thread Dave Watts
> > Of course, coldfusion has to loop over the keys a certain > > way. It does it alphabetically, but that is just the way > > it is done. If they do it some other way in MX, you can't > > complain because structures are NOT ordered. > > Pascal. why does Coldfusion have to loop over the keys i

RE: 404 error when passing variables in path_info

2002-04-04 Thread Dave Watts
> I'm currently using the scheme of passing variables in > cgi.path_info instead of the query string to be able to have > a site indexed by search engines. So variables are passed > like so: http://server/page.cfm/var1/var2 > > This works fine in the dev and test environments. However > the

Visual Basic Discussion Lists?

2002-04-04 Thread Kevin Mansel
Can someone refer me to a really good discussion list like this one, on Visual Basic Programming? Thanks, Kevin ~ Kevin Mansel Senior Web Developer Fox Communications [EMAIL PROTECTED] DL : 425-649-1321 C : 425-346-7221

RE: Where is the best place to put business rules?

2002-04-04 Thread Dave Watts
> I agree with Dave - putting all of your business logic > inside triggers can be a dangerous game. The best way > is to develop objects that implement your business logic > for you and these objects are then used by applications. I don't think that's exactly what I said, or meant. I think tha

RE: SQL null field

2002-04-04 Thread Dave Watts
> > How to detect a null SQL field in colldfusion??? > > Thanks in advance. > > > the filed is not null > >the field is null > Uh, that tells you the length of the field. CF doesn't recognize NULL values, and it replaces them with zero-length strings. I don't think that you can de

RE: Since when was fusebox ever supported or promoted by Allaire / Macromedia?

2002-04-04 Thread Ken Wilson
>I would suppose that this quote is an overstatement, to say the least. How odd for the marketing department of a book publisher to overstate things on their back cover. :) __ Signup for the Fusion Authority news alert and

Re: SQL null field

2002-04-04 Thread Santhosh
> How to detect a null SQL field in colldfusion??? > Thanks in advance. the filed is not null the field is null From Santhosh __ Signup for the Fusion Authority news alert and keep up with the latest news in Co

RE: Since when was fusebox ever supported or promoted by Allaire / Macromedia?

2002-04-04 Thread Dave Watts
> > I don't see anything there to indicate otherwise. > > Really? Unless I'm mis-reading what you wrote, I thought > this statement was pretty unambiguous: > > "This methodology is supported and promoted by Allaire/ > Macromedia." > > It's located under the "Editorial Reviews" section on the

Re: IIS 5.0 and server-side RAM cache?

2002-04-04 Thread Jim McAtee
Restarting the IIS service alone should clear any memory cache. If that didn't do the trick, I would think the problem has to be client-side. Jim - Original Message - From: "Jeff Brown" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, April 04, 2002 11:40 AM Subject

RE: Passing a Struct through a url.

2002-04-04 Thread Andy Ousterhout
I was using IE5.0 running IIS with CF4.0 and I ran into limit of 255 when testing, so I switched to session variables for longer items. Let me know if this is an User error, since it created extra work. Andy -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Thursday, Ap

OT: IIS 5.0 and server-side RAM cache?

2002-04-04 Thread Jeff Brown
I tried this one in the MSDN IIS Newsgroup, no responses. Anyone here have any ideas? We noticed on our IIS 5.0 development server that changes to CSS documents (linked to HTM/CFM docs) on the server did not update instantly in the client browser (IE5.5). Clearing the cache on the client side d

RE: Since when was fusebox ever supported or promoted by Allaire / Macromedia?

2002-04-04 Thread Scott Van Vliet
Dave: Scroll down to Editorial Reviews: "(This methodology is supported and promoted by Allaire/Macromedia)" - Scott -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 7:58 AM To: CF-Talk Subject: RE: Since when was fusebox ever supported o

French months for calendar

2002-04-04 Thread Matthew Walker
Hi, I'm working on a calendar that supports all the CF locales. It's using three letter abbreviations for months. But in French juin and juillet both become jui and jui. Does anybody know what the French do about this? e.g. do they use four letter abbreviations Merci! ___

Re: Since when was fusebox ever supported or promoted by Allaire / Macromedia?

2002-04-04 Thread Gyrus
>> http://www.amazon.com/exec/obidos/ASIN/0735712697/qid=10179238 >> 36/sr=1-5/ref=sr_1_5/002-7985215-1486459 >> >> ( According to this listing that just appeared on amazon.com ) >> The way I remember it, Allaire went out of there not to endorse >> or support any methodology. I didn't realize tha

RE: Daylight savings time

2002-04-04 Thread Chris Montgomery
Shawn, You might want to check out the GetTimeZoneInfo() function. From the docs: GetTimeZoneInfo Description Returns a structure that contains time zone information for the computer on which it is executed. The structure contains four elements with the following keys: * utcTotalOffsetoffs

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Neil Clark - =TMM=
ColdFusion is available in 2 flavours : ColdFusion Server Professional & ColdFusion Server Enterprise ColdFusion Enterprise is the largest/boldest of the family and has the most features. There IS a 30 day trial download of this product from the site which after 30 days expire it will turn in

query sorting after running query

2002-04-04 Thread Bryan Stevenson
Hey All, OK I'm running a query that I need to order by a calculated value from the results. The hitch is that I can't do the calculated values until after I have the query results (not a SQL or DB limitation). So I need to run the querydo some calculationsre-order the results based

RE: if anyone from macromedia is listening - cfinput request

2002-04-04 Thread C. Hatton Humphrey
Just a suggestion, but it already exsists... almost! If you look at the docs for CFInput you will see OnError="" and OnValidate="" as optional fields. I just had to use these to modify the "Phone Number" validation of a CFInput box. Here's the scoop: When you use a CFInput it's doing Javascrip

RE: Since when was fusebox ever supported or promoted by Allaire / Macromedia?

2002-04-04 Thread Jeffry Houser
Neither of which imply Support ( or Promotion ) of fusebox, though. Someone else used the word acknowledgement. I think that fits. At 09:59 AM 4/5/2002 +1200, you wrote: >There was at one stage an article on the Macromedia site about various >methodologies. Fusebox was one of those covered.

Re: Free or close to free Search Engine

2002-04-04 Thread Jeffry Houser
Umm.. verity? If that does not help, perhaps you need to get more specific? At 01:35 PM 4/4/2002 -0600, you wrote: >Looking for a windows based search engine software that will also search >other platforms any suggestions? >Ernie Pena > > >Sr. CF Developer >M.D. ANDERSON > > > ___

RE: Since when was fusebox ever supported or promoted by Allaire / Macromedia?

2002-04-04 Thread Jeffry Houser
At 11:25 AM 4/4/2002 -0500, you wrote: > > > Since when was fusebox ever supported or promoted by Allaire > > > / Macromedia? > > > >To the best of my knowledge, never. > > > > > http://www.amazon.com/exec/obidos/ASIN/0735712697/qid=10179238 > > > 36/sr=1-5/ref=sr_1_5/002-7985215-1486459 > > > > >

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Jeff Whatcott
Try http://www.macromedia.com/software/coldfusion/productinfo/competitive/. Jeff Whatcott Director, ColdFusion Business Team / Macromedia, Inc. [EMAIL PROTECTED] -Original Message- From: Robert Bailey [mailto:[EMAIL PROTECTED]] Sent: W

SQL null field

2002-04-04 Thread Mario Martinez R.
How to detect a null SQL field in colldfusion??? Thanks in advance. Mario __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/col

RE: Daylight savings time

2002-04-04 Thread Matthew Walker
It's a huge pain. I was exploring this yesterday and found this link which might be useful. http://www.twinsun.com/tz/tz-link.htm Regards, Matthew Walker /* Cabbage Tree Creative Ltd Christchurch - New Zealand http://www.matthewwalker.net.nz/ http://www.cabbagetr

Re: CF VS ASP <- let the trolling being

2002-04-04 Thread Dick Applebaum
On Thursday, April 4, 2002, at 07:54 AM, Dave Watts wrote: > > There are lots of free CGI engines, in addition to ASP, which isn't > really > "free" anyway - you have to buy Windows! > Neither are the 3rd-party ASP add-ons free... those that give ASP capabilities that are built-in to CF! Dick

RE: How do you change this number 70.0500 to 70.05?

2002-04-04 Thread Benjamin S. Rogers
Errr...u, I didn't read your message in its entirety. Fields of a certain type will always store a precision length even after using the ROUND function. Try this instead: SELECT CONVERT(NUMERIC(8,2), TheField) AS TheField FROM MyTable That will only give you six digits to the left of the dec

ISP Caching

2002-04-04 Thread J L
Hi all, I just want to see who else is having this problem. We are using CF 5, client vars, and cookies. Basically the problem is that one of our users from A can log in as one of our users from B. And that B user can log in as that A user. What i mean "log in" here is that they use bookmark to

Re: Passing a Struct through a url.

2002-04-04 Thread Jon Hall
HTTP places no limit on url length and the W3C specifically reccomends that servers should be able to accept a url of any length, the same goes for clients. Apache used to have a a 4K limit, although that may have changed with the new versions. I don't know IIS's limit if any. Just as an example,

Daylight savings time

2002-04-04 Thread Shawn McKee
I have applications that deliver content in a time sensitive manner. We store times in our database in UTC (GMT). Whenever a country changes from or to standard time I catch a lot of grief because release times have to be manually updated. Anybody know of a tool, CF or otherwise, that can help

RE: Since when was fusebox ever supported or promoted by Allaire / Macromedia?

2002-04-04 Thread Matthew Walker
> > Also, Jeremy Allaire spoke at the last Fusebox conference. I don't know > > what he said, but I'm guessing he didn't say "You guys are doin' it all > > wrong! Desist!" ;-) Or maybe he did, which would have made an > > interesting speech... > What you have to be careful about in your statement

[WOT] Unix list

2002-04-04 Thread Dick Applebaum
Sorry for the OT Anybody know a good Unix list... I am trying to figure out way to fool/fake out uname! TIA Dick __ Your ad could be here. Monies from ads go to support these lists and provide more resources for the communit

Re[2]: CF VS ASP <- let the trolling being

2002-04-04 Thread Patric Stumpe
Well just a snippet from MM-site: "The ColdFusion Trial Edition automatically converts to a non-expiring, full-featured single user Developer Edition after the 30-day trial period. The Developer Edition is currently available only for Windows and only in English." Not that crippled CFExpress-v

Re: Since when was fusebox ever supported or promoted by Allaire / Macromedia?

2002-04-04 Thread Dave Carabetta
> There was at one stage an article on the Macromedia site about various > methodologies. Fusebox was one of those covered. > > Also, Jeremy Allaire spoke at the last Fusebox conference. I don't know > what he said, but I'm guessing he didn't say "You guys are doin' it all > wrong! Desist!" ;-) Or

RE: if anyone from macromedia is listening - cfinput request

2002-04-04 Thread Tyler M. Fitch
Tony, I have to agree with Critz. Think of it in terms of performance when using the cfform and cfinput tags. Would you rather the server figure out the javascript that your page will do, or would you rather insert your own javascript and simply have it loaded in page. If you know what you wan

RE: Query a Query or SQL Syntax (Not IN)

2002-04-04 Thread Yager, Brian T Contractor/NCCIM
I love your field names "AssName"! Brian Yager President - North AL Cold Fusion Users Group Sr. Systems Analyst NCCIM/CIC [EMAIL PROTECTED] (256) 842-8342 -Original Message- From: Paul Sizemore [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 10:01 AM To: CF-Talk Subject: Query

RE: any jobs in orlando

2002-04-04 Thread Yager, Brian T Contractor/NCCIM
What's wrong with your current job? Looks like you have a "get out of jail card free"! Brian Yager President - North AL Cold Fusion Users Group Sr. Systems Analyst NCCIM/CIC [EMAIL PROTECTED] (256) 842-8342 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thu

RE: Passing a Struct through a url.

2002-04-04 Thread Andy Ousterhout
I believe there is an upper limit of 255 characters on URL parameters. Andy -Original Message- From: Jared Clinton [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 8:12 PM To: CF-Talk Subject: RE: Passing a Struct through a url. Brian, You 'can' serialise a structure into a w

RE: Hosting solutions

2002-04-04 Thread Ian Lurie
Try Adhost: www.adhost.com They've been great to us... -Original Message- From: Andres [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 4:38 PM To: CF-Talk Subject: Hosting solutions Hello cf-talkers, Would like to receive some suggestions from all of you in regards to hosti

(SOT) Application Development Survey

2002-04-04 Thread Eric Dawson
(SOT) Application Development Survey http://www.winnipegalive.com/survey.cfm?survey=7 Sorry for the slightly off topic post. But here's the deal. I have just formalized my subcontract and project work as a small company "Innovation Playgrounds". We will be providing Web application development

Re[2]: Passing a Struct through a url.

2002-04-04 Thread Critz
oi Critz!! hm nevermind I was thinkin session.structure. /me thinks is time to stop working for the nite -- Critz Certified Adv. ColdFusion Developer Crit[s2k] - - Thursday, April 4, 2002, 9:01:36 PM, you wrote: C> oi Brian!! C>

garbled PDF titles in Verity search - help!!

2002-04-04 Thread Gyrus
The Verity search on a site I've just built is returning strings of garbled characters for the titles of some PDFs. The server setup is: CF 4.5 on Solaris 2.6. I didn't generate the PDFs in question, but the doc summary gives this: Producer: Acrobat PDFWriter 4.0 for Windows NT PDF Version: 1.2

RE: reverse engineering database structure

2002-04-04 Thread Jeffrey Polaski
Can't you use SQL Server's Enterprise Manager to generate a diagram? "Diagrams" is the first entry under the db icon. It's been a while since I've used it, it'll do everything you want as far as a diagram goes. Enterprise Manager is usually installed with Query Analyser when you install the clie

RE: Since when was fusebox ever supported or promoted by Allaire / Macromedia?

2002-04-04 Thread Matthew Walker
There was at one stage an article on the Macromedia site about various methodologies. Fusebox was one of those covered. Also, Jeremy Allaire spoke at the last Fusebox conference. I don't know what he said, but I'm guessing he didn't say "You guys are doin' it all wrong! Desist!" ;-) Or maybe he d

RE: Passing a Struct through a url.

2002-04-04 Thread Jared Clinton
Brian, You 'can' serialise a structure into a wddx string, then urlencode it and use it as a normal URL parameter - deserialising on the other side of the interaction. If you would want to is another matter. I'm not sure but there may be an upper limit on the length of URLs last time I tried

RE: Where is the best place to put business rules?

2002-04-04 Thread Andy Ewings
I agree with Dave - putting all of your business logic inside triggers can be a dangerous game. The best way is to develop objects that implement your business logic for you and these objects are then used by applications. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]]

RE: Query a Query or SQL Syntax (Not IN)

2002-04-04 Thread Kevin Schmidt
Gotta love your query names! -Original Message- From: Paul Sizemore [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 10:01 AM To: CF-Talk Subject: Query a Query or SQL Syntax (Not IN) I've got two queries from different data sources, and I want to find records in the First, th

Re: Passing a Struct through a url.

2002-04-04 Thread Critz
oi Brian!! you could pass the name and then evaluate it on the other end. -- Critz Certified Adv. ColdFusion Developer Crit[s2k] - - Thursday, April 4, 2002, 3:45:25 PM, you wrote: BE> Can you pass a ColdFusion Structure through a html url? BE> Brian

RE: Passing a Struct through a url.

2002-04-04 Thread John Wilker
Not that I've ever seen John Wilker Web Applications Consultant, and Author Macromedia Certified ColdFusion Developer President/Founder, Inland Empire CFUG. www.red-omega.com "more people are killed by donkeys than by airplane crashes each year" -Original Message- From: Brian Ecke

RE: Query a Query or SQL Syntax (Not IN)

2002-04-04 Thread Christopher Olive
should you have a ValueList(asstaken.assname) in your last recordset? as it is, you're trying to exclude a *query variable#, not a list of names. IE: Select empl from AssList,asstaken Where empl NOT IN (#ValueList(AssTaken.assname)#) as a side note, very...interesting variable naming. chri

RE: Since when was fusebox ever supported or promoted by Allaire / Macromedia?

2002-04-04 Thread Dave Carabetta
> > Since when was fusebox ever supported or promoted by Allaire > > / Macromedia? > >To the best of my knowledge, never. > > > http://www.amazon.com/exec/obidos/ASIN/0735712697/qid=10179238 > > 36/sr=1-5/ref=sr_1_5/002-7985215-1486459 > > > > ( According to this listing that just appeared on amaz

Combining TWOSELECTSRELATED with a Keyword Search

2002-04-04 Thread mdnightmarauder7
A have a problem. I'm attempting to combine the custom tag TWOSELECTSRELATED with a Keyword Search. Here's how it should operate. The idea is to search by category and subcategory only OR by text only OR using both the selects and text field. When I search using just the two selects related

standby screen

2002-04-04 Thread Steven Dworman
Is there a way I can show the user a message saying "processing" while a page is processing queries? How do I do this? Thanks, Steven D Dworman - Web Consultant Systems Administrator ComSpec International - http://www.comspec-intnl.com

404 error when passing variables in path_info

2002-04-04 Thread Hewitt, Andrew
I'm currently using the scheme of passing variables in cgi.path_info instead of the query string to be able to have a site indexed by search engines. So variables are passed like so: http://server/page.cfm/var1/var2 This works fine in the dev and test environments. However there are 3 servers

Re: if anyone from macromedia is listening - cfinput request

2002-04-04 Thread Critz
oi Tony!! bah. I think your better off doing your own javascript anyway.. -- Critz Certified Adv. ColdFusion Developer Crit[s2k] - - Thursday, April 4, 2002, 10:56:05 AM, you wrote: Tso> please make it so cfinput can do a focus() method for the fiel

Free or close to free Search Engine

2002-04-04 Thread Ernie Pena
Looking for a windows based search engine software that will also search other platforms any suggestions? Ernie Pena Sr. CF Developer M.D. ANDERSON __ This list and all House of Fusion resources hosted by CFHosting.com. The pl

Search Engine

2002-04-04 Thread Ernie Pena
Can anyone recommend a free or close to free search engine that will also search other platforms that is NT based for coldfusion? Ernie Pena Sr. CF Developer M.D. ANDERSON __ Signup for the Fusion Authority news alert and keep

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Daye, Marianne
That does it!!! I'm gonna have to convert my new group to CF. ...Don't you just hate it when the new person tries to tell you how to run things?! Marianne -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 10:49 AM To: CF-Talk Subject: RE

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Alex
for single user development purposes CF is free. there are alot of free editors available to develop CF in. a hobbyist can get started with any language. As far as I know they are almost all free and can be used on a free OS. There is no barrier to entry. On Thu, 4 Apr 2002, Daye, Marianne wro

Passing a Struct through a url.

2002-04-04 Thread Brian Eckerman
Can you pass a ColdFusion Structure through a html url? Brian Eckerman Web Developer __ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.co

Hosting solutions

2002-04-04 Thread Andres
Hello cf-talkers, Would like to receive some suggestions from all of you in regards to hosting solutions. We own our servers and would like to just move our equipment to this new facility and have them managed and supported by their tech team. All ideas and suggestions are welcomed. Thanks

Re: Since when was fusebox ever supported or promoted by Allaire / Macromedia?

2002-04-04 Thread James Sleeman
I've highlighted where they say it. >From the Back Cover Fusebox: Developing ColdFusion Applications is the most complete resource for learning to develop ColdFusion applications with the Fusebox standard. Fusebox is a free web application standard that was created as a standard for writing web a

RE: any jobs in orlando

2002-04-04 Thread Robert Bailey
There is a mailing for CF Jobs, check out houseoffusion.com for you can post it there. I know of some in the LA area, but that is about it. Looking to relocate? Heh Rob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 7:53 AM To: CF-Ta

if anyone from macromedia is listening - cfinput request

2002-04-04 Thread Tony_Petruzzi
please make it so cfinput can do a focus() method for the field that is causing the exception. this is the only thing that prevents me from using the tag and having to do it in javascript. Anthony Petruzzi Webmaster 954-321-4703 http://www.sheriff.org

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Jeffry Houser
ColdFusion Express is the one with limited features. ColdFusion Enterprise is the version of CF with the most features. At 04:49 PM 4/4/2002 +0100, you wrote: >I think people are confusing the CF Enterprise with the 1 user license. CF >Enterprise is a version of CF server just with less tags

Query a Query or SQL Syntax (Not IN)

2002-04-04 Thread Paul Sizemore
I've got two queries from different data sources, and I want to find records in the First, that are not in the second (a non-compliance report) Shouldn't I be able to do a NOT IN in a Query of Query? My code is as follows (Ass is short for Associate): Select AssName from Intranet.PBS.App_Stra

RE: Where is the best place to put business rules?

2002-04-04 Thread Dave Watts
> > in the great words of Adam Churvis. > > > > What would happen if someone decided to update your > > database using Excel ODBC connection? The stored > > procedure wouldn't run. But if you had your business > > logic in the trigger, it would fired upon an insert, > > update, or delete. > >

any jobs in orlando

2002-04-04 Thread Tony_Petruzzi
i don't know if i'm suppose to be posting this. does anyone know of any cf development jobsin the orlando area? i have searched wantedjobs.com but haven't found any. if anyone's company is hiring from that area, please contact me. i want to get out of this current job. Anthony Petruzzi Webmaster

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Andy Ewings
Yup I am.I meant to say CF Express!.good spot J - deliberate mistake you understand! -Original Message- From: James Maltby [mailto:[EMAIL PROTECTED]] Sent: 04 April 2002 16:53 To: CF-Talk Subject: RE: CF VS ASP <- let the trolling being I think you're confusing your Enterprise w

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Robert Everland
You're thinking of CF Express. CF Enterprise is CF Professional with a ton of extra features. Check out the comparison matrix. http://www.macromedia.com/software/coldfusion/productinfo/datasheets_briefs/ Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire -Original Message---

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Robert Bailey
I would imagine you could do this if your employees licensed their own copies, but then who knows. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 7:41 AM To: CF-Talk Subject: RE: CF VS ASP <- let the trolling being I know about that

RE: Since when was fusebox ever supported or promoted by Allaire / Macromedia?

2002-04-04 Thread Dave Watts
> Since when was fusebox ever supported or promoted by Allaire > / Macromedia? To the best of my knowledge, never. > http://www.amazon.com/exec/obidos/ASIN/0735712697/qid=10179238 > 36/sr=1-5/ref=sr_1_5/002-7985215-1486459 > > ( According to this listing that just appeared on amazon.com ) > Th

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread James Maltby
I think you're confusing your Enterprise with your Babylon 5 Andy - CF Express - limited but free, CF Professional - full version but does not allow clustering, CF Enterprise - full version, but also allows clustering and beaming stuff up.. :) J -Original Message- From: Andy Ewings [mail

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Robert Everland
Well there has always been a CF Enterprise, but MM listens to us on the group and when we whined and said there wasn't anything free for us to develop in they offered us a development version of CF Enterprise. It allows you to use CF Enterprise in it's full functionality, no features taken away. Y

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Dave Watts
> I don't know what it is you don't get, but as a part-time > telecommuter, I prefer not to have to rely on a remote server > while developing. So do I. Fortunately, I can do that with CF just as easily as with ASP. Both work through IIS, and CF can use other web servers as well, such as Apac

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Andy Ewings
I think people are confusing the CF Enterprise with the 1 user license. CF Enterprise is a version of CF server just with less tags supported. so if you are not using the full tag list then this may be your bag -Original Message- From: Robert Bailey [mailto:[EMAIL PROTECTED]] Sent: 04 A

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Clint Tredway
He is taliking about the Developers version... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 9:34 AM To: CF-Talk Subject: RE: CF VS ASP <- let the trolling being Where is this Free version of coldfusion. are you referring to CF Expr

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Tony_Petruzzi
I know about that one. But in defense of Marianne, i don't think you can take that cd and install it on more than one machine per the license agreement. am i wrong about this? if not, that would be great. i had to port an entire application from CF to html/vbscript since we didn't want to buy lice

Re: Where is the best place to put business rules?

2002-04-04 Thread cf refactoring
I'm going to go off on a different tack here than the discussion that's been going on. It's important to note the difference between logical tiers and physical tiers. It sounds like you want to implement a logical 3-tier system on top of a physical 2-tier system and you're wondering where to put

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Robert Bailey
You can use CF Express, but it is a little limiting, but CF5 is free as a 1 connection developmental server that you can install at home and use, but only allowed 1 connection, which would be yourself. Well, I guess I could use it for my personal home page as well, since I am the only one that eve

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Robert Bailey
Or ya can download it :) -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 7:42 AM To: CF-Talk Subject: RE: CF VS ASP <- let the trolling being No - you can get a one single licence of CF server - in fact doesn't it come on the CD in the bac

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Daye, Marianne
This is great! So do you have to use that in conjunction with CF Enterprise as Robert mentioned? -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 10:21 AM To: CF-Talk Subject: RE: CF VS ASP <- let the trolling being CF equivalent to PWS is PWS. Yo

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Andy Ewings
No - you can get a one single licence of CF server - in fact doesn't it come on the CD in the back of the Forta book? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 04 April 2002 16:34 To: CF-Talk Subject: RE: CF VS ASP <- let the trolling being Where is thi

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Tony_Petruzzi
Where is this Free version of coldfusion. are you referring to CF Express? Anthony Petruzzi Webmaster 954-321-4703 http://www.sheriff.org -Original Message- From: Daye, Marianne [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 10:36 AM To: CF-Talk Subject: RE: CF VS ASP <- let

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Daye, Marianne
Pardon me! I hadn't heard of CF Enterprise. Hence the question "Does CF have an equivalent?". If I ever get to code in CF again I'll have to look into that. I don't know what it is you don't get, but as a part-time telecommuter, I prefer not to have to rely on a remote server while developing.

RE: CF VS ASP <- let the trolling being

2002-04-04 Thread Alex
CF equivalent to PWS is PWS. You can use PWS with CF. I do all my development on my local PC by copying the CF site to my home computer. The best thing to do is know the technology you are using. On Thu, 4 Apr 2002, Daye, Marianne wrote: > I have to agree that CF is easier and faster to use t

Re: Chat

2002-04-04 Thread phumes1
There is a site www.softchoice.com which has a cool "Chat" program where you can ring the sales person who then comes online to chat with you. Is there anything in CF that can do this. I want the chat for a specific user. I don't want *anyone* to come in. +--

  1   2   >