Re: Regular expressions

2000-09-18 Thread Aidan Whitehall
CFSET variables.TextFile = REReplace(variables.TextFile, ",,", ", ,","all") CFSET variables.TextFile = REReplace(variables.TextFile, ",,", ", ,","all") Yeah, I did. And it worked. But I figured it was probably better (in the long run) to ask the "right" way of doing it in 1 RE :-) --

RE: Photo Database App

2000-09-18 Thread Stewart McGowan
Imation's newest version of Media Manager is completely Cold Fusion, its a little more than a photo app though, and is therefore priced accordingly Stew -Original Message- From: Kent A. Orso [mailto:[EMAIL PROTECTED]] Sent: 14 September 2000 20:27 To: [EMAIL PROTECTED] Subject: Photo

CFFILE - writing quotation marks

2000-09-18 Thread W Luke
Hi, I need to create a text file, and in it there will be quotations marks as follows: Line one. Line two - "some more text here" They can't be single quotes - and obviously having "" creates problems because CFFILE assumes I'm trying to end the Output. How can I do this? Cheers all. Will

Query Problem

2000-09-18 Thread W Luke
[I did post this last night, but my mail server didn't deliver it. So here it is again] Hi, I'm probably being stupid here but can someone please help me on my query? It's displaying the correct results - but more than once: cfquery name="cats" datasource="localads" SELECT ID, cat_name,

RE: WHOIS queries

2000-09-18 Thread seth ward
I've decided to try the CFX_NICNAME tag; I've installed this and it looks like exactly what I'm looking for, but I am getting connection errors, whichever host I try to use. Does this code use non-standard ports or any other techniques that may be causing problems through our firewall (not being

text field

2000-09-18 Thread Deva Ramesh
Hi I have a text field that is pulling up content from a DB. This content will at times contain HTML statements. I'm having problems right now with the textarea stripping out the HTML command (non-breaking space, in case it doesn't show up here either) nbsp; I put it in through the textarea

Re: Query Problem

2000-09-18 Thread Bud
On 9/18/00, W Luke penned: [I did post this last night, but my mail server didn't deliver it. So here it is again] It was delivered and answered. :) Here it is again. On 9/17/00, W Luke penned: Hi, I'm probably being stupid here but can someone please help me on my query? It's displaying the

RE: Extranet's

2000-09-18 Thread Reynolds, Adam
I would suggest that your security should be at your Webserver level. For example under IIS do not allow anonymous users. Force them to login using an NT Username/domain. You can put a extra layer of securiy into your Application logic, but because you may have an Intranet which is a combination

Re: CF, Security and AOL driving me nuts.

2000-09-18 Thread Rob Keniger
on 18/9/2000 8:28 PM, Tage Widsell at [EMAIL PROTECTED] wrote: There are instructions on the AOL how to overcome this by sending the 'no-cache' header for every page, but that doesn't seem to help. To defeat "agressive" caching systems such as the AOL one you mention, the best thing to do is

RE: Ok, What is Fusebox?

2000-09-18 Thread Reynolds, Adam
Yup, Fusebox really is a great leap forward in Web site development. It makes for extremely maintainable code...just make sure you add those headers to EVERY file! -- From: Mark Adams[SMTP:[EMAIL PROTECTED]] Sent: 16 September 2000 02:49 To: [EMAIL PROTECTED]

Re: RE-posting: WDDX problems (URGENT)

2000-09-18 Thread Bud
On 9/18/00, Paul Johnston penned: Replying to my own post to explain it a bit better. We are running several Cold Fusion 4.5 servers from one MS SQL Server 7. On all but the one we want it to work on, the error below is occurring. The error is that the WDDX packet is incomplete (ie it is not

Slightly OT: What's up at Allaire?

2000-09-18 Thread William Irvine
Hello all... Does anyone have any insight on what's causing perceived turmoil with Allaire (ALLR) stock? Their stock closed at 17.5 on Friday amid several rumors. Disclaimer: I don't own any ALLR stock, however, I am concerned about taking our planned jump into Spectra if Allaire is not

RE: MS SQL 7 Varchar

2000-09-18 Thread Anthony Geoghegan
USE oledb as dbtype -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED]] Sent: Friday, September 15, 2000 6:19 PM To: [EMAIL PROTECTED] Subject: MS SQL 7 Varchar I've got a MS SQL 7 table with some fields defined as Varchar(510). When I retrieve them in CF Pro 4.01 via ODBC,

Access to SQL 7.0 query formatting

2000-09-18 Thread Bosky, Dave
We will be eventually upgrading from Access to SQLserver but right now I have an application written for access and the client needs it converted to work on SQL-server. Is there any applications that can validate the sql statement to confirm they are validate? I don't have access to SQL-server to

Re: text field

2000-09-18 Thread Bud
On 9/18/00, Deva Ramesh penned: Hi I have a text field that is pulling up content from a DB. This content will at times contain HTML statements. I'm having problems right now with the textarea stripping out the HTML command (non-breaking space, in case it doesn't show up here either) nbsp; I

RE: Ok, What is Fusebox?

2000-09-18 Thread Reynolds, Adam
In fusebox, every page on your site is delivered to you via a case statement embedded in the index.cfm. Header and footer information is usually maintained by the index.cfm through calls to header and footer files and any specific action/display logic is included with a rigid (ish) file naming

RE: Ok, What is Fusebox?

2000-09-18 Thread Stephen Moretti
Will, What exactly do you mean by "maintainable"? [snip] Yup, Fusebox really is a great leap forward in Web site development. It makes for extremely maintainable code...just make sure you add those headers to EVERY file! "Maintainable" means that it is easy to

Re: Slightly OT: What's up at Allaire?

2000-09-18 Thread Adrian Cooper
- Original Message - From: "Adrian Cooper" [EMAIL PROTECTED] Sent: 18 September 2000 13:07 The extreme danger though for Allaire is that it is much too much of a one product company in the face of competing technologies like SOAP, XML, PHP etc... Remember Lotus, Borland,

RE: Ok, What is Fusebox?

2000-09-18 Thread Stephen Moretti
Will, Sounds extremely interesting, and a very good idea. I've been coding in CF for 3 weeks or so, done a couple of relatively simple projects; would you say Fusebox is something I *must* start to look at and incorporate into my code now, or should I wait until I have a little more

Re: RE-posting: WDDX problems (URGENT)

2000-09-18 Thread Mary_Baotic
It could be a limitation of the ODBC driver you are using for SQL Server. Have you upgraded to the newer ODBC driver for SQL Server 7? Mary |+-- || "Paul Johnston" | || paul.johnston@creat| ||

Re: Ok, What is Fusebox?

2000-09-18 Thread W Luke
Some of the fusebox concepts can get quite complicated, particularly for a new developer, but the basic ideas are really very simple. In fact, I would go as far as to say that it will probably help you to understand CF better and debug your code easier. I'm still unsure of exactly what it

RE: Ok, What is Fusebox?

2000-09-18 Thread David E. Crawford
This is a multi-part message in MIME format. --=_NextPart_000_01B9_01C02172.9391D410 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Re: Ok, What is Fusebox? The easiest way is to go to www.fusebox.org and download the specification. There are also

Sorry to bring this up again, but I missed the conversation...

2000-09-18 Thread Evan Lavidor
Point me to an archive if there is one (the one linked to off of houseoffusion.com only goes up to Jan, 2000). I realize by looking @ tail end threads that there was a recent discussion of CFLOCK. Can someone give me a summary? I've been trying to grapple with when should/shoudn't one use

CF Developer's Journal

2000-09-18 Thread Mike Connolly
What is the CF Developer's Journal? Where can I get a copy? What other equivalent resources are available? Regards Mike Connolly --- Any opinions expressed in this message are those of the individual and not necessarily the company. This

Inserting sn Anchor in a URL

2000-09-18 Thread Paige Chandler
This is a multi-part message in MIME format. --=_NextPart_000_0012_01C02155.37245A80 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello All, Below is the url from one of my photo albums. It initializes the = url.Photo variable with the

Re: CF Developer's Journal

2000-09-18 Thread Howie Hamlin
It's a magazine dedicated to cf development. www.sys-con.com/coldfusion is the web site for this... Regards, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - the World's most configurable mail server -

RE: CF Developer's Journal

2000-09-18 Thread Mike Connolly
Cheers Howie. -Original Message- From: Howie Hamlin [SMTP:[EMAIL PROTECTED]] Sent: 18 September 2000 14:50 To: [EMAIL PROTECTED] Subject: Re: CF Developer's Journal It's a magazine dedicated to cf development. www.sys-con.com/coldfusion is the web site for this...

RE: Slightly OT: What's up at Allaire?

2000-09-18 Thread Chris Montgomery
Here's why ALLR is down: http://www.thestreet.com/_yahoo/markets/techmovers/1083926.html http://biz.yahoo.com/rf/000918/n18185391.html http://biz.yahoo.com/prnews/000918/ma_allaire.html Chris Montgomery [EMAIL PROTECTED] Web Development Consulting http://www.astutia.com Allaire

Re: Sorry to bring this up again, but I missed the conversation...

2000-09-18 Thread Rob Keniger
on 18/9/2000 11:24 PM, Evan Lavidor at [EMAIL PROTECTED] wrote: Point me to an archive if there is one (the one linked to off of houseoffusion.com only goes up to Jan, 2000). Um, check the footer of this and every message... Rob Keniger [EMAIL

Re: can we know database or driver name

2000-09-18 Thread pan
From: "Deva Ramesh" [EMAIL PROTECTED] Hai all Can i know what data base(whether Sqlserver or Ms Access) is using the programmer with help of just datasource name. Is there any Command is available in coldfusion. any ideas would be appreciated. Maybe this will help you ... requires

RE: WHOIS queries

2000-09-18 Thread lsellers
I've decided to try the CFX_NICNAME tag; I've installed this and it looks like exactly what I'm looking for, but I am getting connection errors, whichever host I try to use. Does this code use non-standard ports or any other techniques that may be causing problems through our firewall (not

RE: Sorry to bring this up again, but I missed the conversation...

2000-09-18 Thread lsellers
Point me to an archive if there is one (the one linked to off of houseoffusion.com only goes up to Jan, 2000). Um, check the footer of this and every message... Perhaps this is the one situation where wrapping BLINK tags around "unsubscribe" might be ok. :) --min

RE: Sorry to bring this up again, but I missed the conversation...

2000-09-18 Thread Evan Lavidor
okay, okay. sorry i wasn't paying attention. i'll try to be good from now on... ;-) Evan -Original Message- From: lsellers [mailto:[EMAIL PROTECTED]] Sent: Monday, September 18, 2000 10:35 AM To: [EMAIL PROTECTED] Subject: RE: Sorry to bring this up again, but I missed the

Allaire Stock Wow

2000-09-18 Thread Rich
Anybody following todays stock market? Allaire is down to 11 dollars!! They are way below estimates for 3rd quarter. Rich -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

Re: Ok, What is Fusebox?

2000-09-18 Thread W Luke
- Original Message - From: "Stephen Moretti" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 18, 2000 2:39 PM Subject: RE: Ok, What is Fusebox? Hey Will, David is exactly right, you need to start at the fusebox website, but I'm gonna *try* and give you a little

Re: Tab Key

2000-09-18 Thread Vyna P. Courtney
--E3247DA5CF1B8A069397A823 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, The tab index doesn't seem to work with Netscape. Is there something I can do? Please help. Thanks, V. David Shadovitz wrote: You can have IE skip the links by setting their

Re: Allaire Stock Wow

2000-09-18 Thread Paige Chandler
Hi Rich, Yeh! When it gets to $5 I'll buy. Regards, Paige - Original Message - From: "Rich" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 18, 2000 10:51 AM Subject: Allaire Stock Wow Anybody following todays stock market? Allaire is down to 11 dollars!! They are

Re: CF Developer's Journal

2000-09-18 Thread Michael Dinowitz
What is the CF Developer's Journal? Where can I get a copy? What other equivalent resources are available? www.fusionauthority.com/alert www.defusion.com www.cfadvisor.com and many, many others. Regards Mike Connolly --- Any opinions

one more cflock question

2000-09-18 Thread Evan Lavidor
Referencing the snippet below, taken from http://www.allaire.com/Handlers/index.cfm?ID=13810Method=Full: My question is this: if CFLOCK is designed to prevent concurrency problems with session variables (among others), how much sense does it make to define a CFLOCK using a session variable?!?

Re: Tab Key

2000-09-18 Thread Rob Keniger
on 19/9/2000 12:41 AM, Vyna P. Courtney at [EMAIL PROTECTED] wrote: The tab index doesn't seem to work with Netscape. Is there something I can do? No. Unfortunately it's an Internet Explorer-only function. Rob Keniger [EMAIL PROTECTED]

Re: Ok, What is Fusebox?

2000-09-18 Thread Ken Wilson
The fusebox.org site code is available for download off the homepage. Grab the zip file and spend a little time with it. That should get you started. Well no it has - I can see the logic, but would like to see some example code and "structure" somehow.

RE: DataSources Across Multiple Computers

2000-09-18 Thread Mark Warrick
Can you connect to it with a Sybase client from the CF server to the Sybase server? If not, there's your first problem - you probably don't have the client utilities and proper drivers installed on the CF server. If you CAN connect, then in the advanced settings tab in the CF Administrator

RE: Debugging an undefined DB

2000-09-18 Thread Mark Warrick
Actually, you do see an error when the DSN isn't setup. It looks kinda like this: Error Diagnostic Information ODBC Error Code = S1000 (General error) [Microsoft][ODBC Microsoft Access Driver] Could not find file '(unknown)'. Hint: The cause of this error is usually either (1) You have used

Re: Allaire Stock Wow

2000-09-18 Thread Michael Dinowitz
personally, I've lost a bit of cash (margin) on this, but once it hits 5 I'll buy as well unless MS buys up Allaire by then. :( As a side note, this topic should be moved to the new cf-stock list. Hi Rich, Yeh! When it gets to $5 I'll buy. Regards, Paige - Original Message -

RE: Extranet's

2000-09-18 Thread Mark Warrick
I would recommend the following to control access to your site: First of all, combine the two users tables (this is database normalization). Setup a "users_groups" table and define groups such as "Public, Internal, Extranet, etc.". Setup a linking table between the users table and the groups

RE: Allaire Stock Wow - Just a reminder....

2000-09-18 Thread Stephen Moretti
In the last few days there has been a LOT of talk about Allaire stock on the various lists. I've created a separate list for all stock discussion so it does not run into the tech talk on CF-Talk or the Fusebox discussions on Fusebox. While it will still be within the list guidelines for

RE: Ok, What is Fusebox?

2000-09-18 Thread Paul Johnston
Will, Very simply, fusebox is a way or a methodology of creating an application using "actions" called a "fuseaction". You use the attributes scope using the cf_formurl2attributes tag (which is part of fusebox). What this tag does is to change all "form" and "url" scope variables into attribute

RE: Cold Fusion Studio Help??

2000-09-18 Thread John Wu
I am not sure why it freezes. I got that problem sometimes. However, I do know that if you go browse your computer and expand My Computer, you will see a "Allaire FTP RDS" icon. That's where you edit or delete RDS. John Wu Stirling Bridge Group -Original Message- From: Rich

RE: Inserting sn Anchor in a URL

2000-09-18 Thread Mark Warrick
Simply append each URL with TWO pound signs and the name of the bookmark (a name) to make this work. -- Mark Warrick Phone: (714) 547-5386 Efax.com Fax: (801) 730-7289 Personal Email: [EMAIL PROTECTED] Personal URL:

Re: Allaire Stock Wow

2000-09-18 Thread Mooner Ent
According to a guy I listen to that knows high tech stocks more than anyone I know, he simple says that as of this year, if a company misses Wall Street expectations they will watch their stock explode, and not upwards. If Allaire is going to show an unexpected loss that big, look for sub tens.

Allaire Certification

2000-09-18 Thread Vinuthomas
Hi all. I would like to take allaire certification.Where will i get sample questions and ?.is there any book for it ?. Which topics mainly cover in exam. please help me. Thanks vinu This e-mail has been sent to you courtesy of

RE: Allaire Certification

2000-09-18 Thread Reynolds, Adam
Could somebody verify if the CF exam at www.brainbench.com is similar to the Allaire Certification exam? It could be good practice! Adam -- From: Vinuthomas[SMTP:[EMAIL PROTECTED]] Sent: 18 September 2000 16:29 To: [EMAIL PROTECTED] Subject: Allaire

RE: one more cflock question

2000-09-18 Thread Dave Watts
Referencing the snippet below, taken from http://www.allaire.com/Handlers/index.cfm?ID=13810Method=Full: My question is this: if CFLOCK is designed to prevent concurrency problems with session variables (among others), how much sense does it make to define a CFLOCK using a session

Re: CF, Security and AOL driving me nuts.

2000-09-18 Thread Tage Widsell
-- From: Rob Keniger [EMAIL PROTECTED] on 18/9/2000 8:28 PM, Tage Widsell at [EMAIL PROTECTED] wrote: There are instructions on the AOL how to overcome this by sending the 'no-cache' header for every page, but that doesn't seem to help. To defeat "agressive" caching systems such

RE: WHOIS queries - see Fusioneers.com

2000-09-18 Thread Mark Warrick
Check out the DNS Lookup Utility on Fusioneers.com. Give it a test run, see how you like it. Let me know if you want it privately. -- Mark Warrick Phone: (714) 547-5386 Efax.com Fax: (801) 730-7289 Personal Email: [EMAIL PROTECTED]

ot xml

2000-09-18 Thread Gavin Myers
Does anyone have any good book references for xml? Using a scale of 0 - 10 0 meaing incredibelly beginner 10 meaning super advanced -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe

RE: can we know database or driver name

2000-09-18 Thread Rick Osborne
For SQL Server, try: select @@version Microsoft SQL Server 7.00 - 7.00.699 (Intel X86) May 21 1999 14:08:18 Copyright (c) 1988-1998 Microsoft Corporation Standard Edition on Windows NT 4.0 (Build 1381: Service Pack 6, RC 1.3) Or, on mySQL: select version()

Re: ot xml

2000-09-18 Thread Paige Chandler
There is a XML for Dummies. I have it but have only started. Regards, Paige - Original Message - From: "Gavin Myers" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 18, 2000 11:48 AM Subject: ot xml Does anyone have any good book references for xml? Using a scale of

RE: ot xml

2000-09-18 Thread Stewart McGowan
Building Web Sites with XML by Michael Floyd is ok, and There's a SAMS Teach yourself XML book which is ok to start with, the Sams book ISBN is 0672319500, the other one is at home, you should be able to find it on amazon though. Regards Stew

RE: cheap hosting needed (was RE: Thanks Steve---- ref CF hosting - within 20 $ -pls suggest)

2000-09-18 Thread Mark Warrick
Hey Guys, I've got a request into Adolf this morning for some other web space to setup. I'll make sure that when I talk to him that he knows you need space as well. I'm also copying him on this message so that he knows that the community at large is interested in his services. In the

RE: oracle trigger to return newid

2000-09-18 Thread Dan Haley
A stored procedure could return the new id to you but I haven't found them to be the most efficient means to do simple inserts. Other than stored procedures you have a couple of options (or more, I'm sure) - the "old access method" using cftransaction around the insert and subsequent select

RE: Ok, What is Fusebox?

2000-09-18 Thread Mark Warrick
I'll second that "doesn't feel right" attitude. But then again, what feels really good is being able to upsell your client on the conversion knowing that you're doing more than just maintainance. You're developing a platform that all future developers on the site will understand and

RE: Ok, What is Fusebox?

2000-09-18 Thread Mark Warrick
I'm training 5 people (all long time friends) on how to use ColdFusion. And I'm training them in the Fusebox style so that as they're going through the CFWACK book and the Allaire self-paced tutorial CD, they'll constantly ask "Well WHY did they do it that way?" instead of simply accepting

RE: Ok, What is Fusebox?

2000-09-18 Thread Stewart McGowan
one of the problems from a client perspective is that the number of templates is a lot higher, and although they may be lots of four or five line query templates, its still perceived that the application is more complex...having said that once you've started with Fusebox its a doddle looking at

RE: Ok, What is Fusebox?

2000-09-18 Thread Mark Warrick
I'm not sure what he meant, but my impression of "maintainable" would be things like performance upgrades to the CF code and having a DBA rebuild and improve a SQL query in order to speed up the entire application. -- Mark Warrick

Re: Regular expressions . . . a good tutorial somewhere?

2000-09-18 Thread Tom Muck
If you can get away with doing it client-side, just use JavaScript. The RegExp implementation is excellent. tom - Original Message - From: "Steve Bernard" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 18, 2000 11:48 AM Subject: RE: Regular expressions . . . a good

RE: Slightly OT: versioning control

2000-09-18 Thread Mark Warrick
Your problem is a perfect candidate for the Fusebox methodology. Read into it here: http://www.fusebox.org. Aside from that, it seems like you've got some communication problems between you, the client, and the other developers that need to be resolved. Who is in control of the project

RE: Ok, What is Fusebox?

2000-09-18 Thread Gregory Harris
I'll third that, after having coded mostly in Fusebox for the last 2 months, I started my new job at the city with tons of "legacy" CF code and orders to proceed with the status quo to maintain consistency. Despite the fact that the code I'm looking at is so hard to understant. It is

Re: ot xml

2000-09-18 Thread Ryan
At 10:48 9/18/00 -0500, you wrote: Does anyone have any good book references for xml? Using a scale of 0 - 10 0 meaing incredibelly beginner 10 meaning super advanced I've heard this one is good. I just bought it but havn't looked through it yet. I find the amazon user reviews very helpful to

ColdFusion for Linux on Sparc?

2000-09-18 Thread Stas Newdel
Does anybody know if ColdFusion Pro for Linux will run on Sun hardware running Linux? Thanks! -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

Ben Forta, I call on thee (was: What is Fusebox)

2000-09-18 Thread Gregory Harris
Ben, my challenge to thou art: Develop a book in ColdFusion (either 4.5 or the upcoming 5 release) that is entirely re-written using fusebox examples (or at least a similair technique). Let's start off the beginners as the awesome developers that they have the potential to be! Imagine what

Re: DataSources Across Multiple Computers

2000-09-18 Thread William J Wheatley
I'm using Linux we have 2 CF/sybase servers both have sybase installed i wanted to test and see if CF/Sybase server 1 could QUERY CF/sbyase server 2 and its on linux so any ideas/ Bill Wheatley Senior Developer AEPS INC http://www.aeps.com ICQ: 417645 http://www.aeps2000.com 954-472-6684 X303

Re: Allaire Certification

2000-09-18 Thread jeph...
It's very similar. I would say if you can pass brainbench with a 3.75 or higher, you can pass the allaire cert. Jeph Marrero, Gravity Free insert neato job title here 1960 Stickney Point Road | Second Floor Sarasota | FL | 34231 | 941-927-7674 [EMAIL PROTECTED] - Original Message -

NAMED.BOOT

2000-09-18 Thread W Luke
Hi all, Anyone done any DNS modification / creation with CF - named.boot et al? Will -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

RE: ot xml

2000-09-18 Thread Sean Driscoll
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C02190.75BDBBC0 Content-Type: text/plain; charset="iso-8859-1" If you are using XML for the web and plan to use the Microsoft

Re: Slightly OT: What's up at Allaire?

2000-09-18 Thread Laszlo Nadai
So, if you sold the rumor, now you can buy the news :-) laszlo Chris Montgomery wrote: Here's why ALLR is down: http://www.thestreet.com/_yahoo/markets/techmovers/1083926.html http://biz.yahoo.com/rf/000918/n18185391.html http://biz.yahoo.com/prnews/000918/ma_allaire.html Chris

OT: listing tables in Access?

2000-09-18 Thread Jamie Keane
Hello everyone, I was wondering if Access has some mechanism in place to list all tables in a database. Thanks. -- Jamie Keane Programmer SolutionMasters, Inc. 9111 Monroe Rd., Suite 100 Charlotte, NC 28270 www.solutionmasters.com 704.563.5559 x 228 Voice 704.849.9291 Fax

Re: ot xml

2000-09-18 Thread Christopher S Martin
The XML Biible is a great book. It has just about everything from begginer, to XML God. I like it. Chris Martin [EMAIL PROTECTED] www.fsenablers.com www.fslink.com - Original Message - From: "Gavin Myers" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 18, 2000 11:48

[CF-Talk] Help with page not found error on my website intermitantly ?????

2000-09-18 Thread AustralianAccommodation.com Pty. Ltd.
I have had some people look at the website from overseas and the three of them each in different countries told be they were getting pages cannot be found error and then after multiple refreshes the top nav bar would appear and the bottom page would not be found or then visa versa and then after

[CF-Talk] RE: Ok, What is Fusebox?

2000-09-18 Thread Rich
I am reading all of the emails about Fusebox and since I am a new developer I would like to get started with the Fusebox method. Are there any books published on this subject?? Rich -- Archives:

[CF-Talk] RE: cflocking.. -- ATTENTION -- MY CASE STUDY

2000-09-18 Thread Mike Amburn
Yes but during that test were those variables being written to at the same time? I beleive that if you do a read without locking, and a write occurs or is occuring at the same time, you will have problems. But what if there is no writing? Say you setup a datasource name if its not

[CF-Talk] Incorrect use of CFPARAM?

2000-09-18 Thread Christopher S Martin
Hello everyone. I have a page that has a bunch of pull down menus that a user can use to search a database. At the beginning of the template, I have a bunch of CFPARAMS: cfparam name="form.training" default="void" cfparam name="form.month" default="void" cfparam name="form.year" default="void"

[CF-Talk] Re: ColdFusion for Linux on Sparc?

2000-09-18 Thread Michael Dinowitz
A very interesting question. You may want to ask it on the CF-Linux list as there may be people there that are not on the CF-Talk list. Does anybody know if ColdFusion Pro for Linux will run on Sun hardware running Linux? Thanks!

[CF-Talk] RE: NAMED.BOOT

2000-09-18 Thread lsellers
Hi all, Anyone done any DNS modification / creation with CF - named.boot et al? Yeaaa. Fun isn't it? :) --min -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

[CF-Talk] Re: Ben Forta, I call on thee (was: What is Fusebox)

2000-09-18 Thread Michael Dinowitz
No disrespect to Ben, but there are at least two books on fusebox coming out and I'm quite sure at least one of them will cover what you want. This has been talked about more on the Fusebox list. Ben, my challenge to thou art: Develop a book in ColdFusion (either 4.5 or the upcoming 5

[CF-Talk] Joins with CFQUERY

2000-09-18 Thread Leroy, Eric
Can you do full (outer) joins with CFQUERY? (or right and left joins). I can get the query to execute but it does not seem to pull all the records that it should. Am I missing something? I would appreciate any input. Thanks Eric J. LeRoy RST Database Admin/Software Developer (716) 422-4682

[CF-Talk] RE: ColdFusion for Linux on Sparc?

2000-09-18 Thread Michael Sheldon
Nope, if you want to run CF on sun hardware, you gotta run Solaris. Michael J. Sheldon -Original Message- From: Stas Newdel [mailto:[EMAIL PROTECTED]] Sent: Monday, September 18, 2000 9:34 AM To: CFTalk Subject: ColdFusion for Linux on Sparc? Does anybody know if ColdFusion Pro for

[CF-Talk] Re: Ok, What is Fusebox?

2000-09-18 Thread W Luke
complex...having said that once you've started with Fusebox its a doddle looking at anyone else's code. For me, that "feature" or function, call it what you will, is a key selling point for Fusebox from what I can see so far. Who knows who will have to look at, and/or modify and add to your

[CF-Talk] RE: ColdFusion for Linux on Sparc?

2000-09-18 Thread Dave Watts
Does anybody know if ColdFusion Pro for Linux will run on Sun hardware running Linux? Thanks! According to Allaire's official materials, no. I'd guess that you can't simply because it's a binary distribution, and Linux Sparc binaries will be different from Linux x386 binaries. Dave Watts,

[CF-Talk] Re: listing tables in Access?

2000-09-18 Thread Ricq Pattay
Assuming Access 97 (don't know about 2000): With the main database window visible, select Tools/Analyze/Documenter. There you can choose which db objects you wish to view/print. Ricq Pattay [EMAIL PROTECTED] Univ of Minnesota - Twin Cities College of Veterinary Medicine

[CF-Talk] RE: Ben Forta, I call on thee (was: What is Fusebox)

2000-09-18 Thread Rich
I want to learn Fusebox from the beginning. Where to start?? -Original Message- From: Gregory Harris [mailto:[EMAIL PROTECTED]] Sent: Monday, September 18, 2000 12:33 PM To: [EMAIL PROTECTED] Subject: Ben Forta, I call on thee (was: What is Fusebox) Ben, my challenge to thou art:

[CF-Talk] losing my cookies

2000-09-18 Thread Peter Benoit
I have a form page which submits to a second page. The second page sets a cookie if the user/pass is accepted. Now, the form page does a check on this cookie if it's revisited, if the cookie exists I want it to redirect to the second page. Problem is, the form page will know the cookie is

[CF-Talk] XML and Cold Fusion

2000-09-18 Thread Gavin Myers
Hey thanks everyone for the suggested xml books, i'll try and pick them up tonight Here's my problem: http://www.nasdaq.com allowes companies to take their information and embed it into their own web sites via xml for example: here is the information they have on the subject

[CF-Talk] RE: listing tables in Access?

2000-09-18 Thread Eron Cohen
Once upon a time there was a tag in the Allaire Tag Gallery that did this for MS Access. Unfortunately, it quit working when we we upgraded to Access 2000 or something like that (I forget exactly what went wrong). Just in case it will work for you, it was called CFX_TABLEFIELDS. HTH, Eron

RE: [CF-Talk] RE: Ok, What is Fusebox?

2000-09-18 Thread Mark Warrick
No books yet - just online documentation. But it's soon to come. Go to Fusebox.org. -- Mark Warrick Phone: (714) 547-5386 Efax.com Fax: (801) 730-7289 Personal Email: [EMAIL PROTECTED] Personal URL: http://www.warrick.net Business

RE: [CF-Talk] Re: ColdFusion for Linux on Sparc?

2000-09-18 Thread Jesse Noller
Coldfusion for Linux only runs on the Intel architecture at the moment. -Jesse Noller Allaire Corp -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Monday, September 18, 2000 2:07 PM To: [EMAIL PROTECTED] Subject: [CF-Talk] Re: ColdFusion for Linux on Sparc?

RE: [CF-Talk] Re: ColdFusion for Linux on Sparc?

2000-09-18 Thread mherbene
I'm quite sure Cf Linux is compiled only for Intel (and compatible) processors, so the answer would be no. -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Monday, September 18, 2000 2:07 PM To: [EMAIL PROTECTED] Subject: [CF-Talk] Re: ColdFusion for Linux on

Re: [CF-Talk] Re: listing tables in Access?

2000-09-18 Thread Jamie Keane
I meant as a query. -- Jamie Keane Programmer SolutionMasters, Inc. 9111 Monroe Rd., Suite 100 Charlotte, NC 28270 www.solutionmasters.com 704.563.5559 x 228 Voice 704.849.9291 Fax -Original Message- From: Ricq Pattay [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date:

Re: [CF-Talk] Incorrect use of CFPARAM?

2000-09-18 Thread Jim McAtee
That's the way it should work. You shouldn't really need to set default values passed in from a select box, since a value will always be passed. By default, the browser will preselect the first one, unless told otherwise, and that value will be passed if the user doesn't change it. I'd guess

[CF-Talk] RE: Slightly OT: versioning control

2000-09-18 Thread Jennifer
At 09:27 AM 9/18/00 -0700, you wrote: Your problem is a perfect candidate for the Fusebox methodology. Read into it here: http://www.fusebox.org. Well, this other person, the one who works for the client and not for us, will not be doing any CF programming. This person might make small HTML

  1   2   >