RE: CFreport and crystal reports

2000-12-14 Thread Lena Trajkovska
Hi, Mike! I had a posting a month ago about CR8 and the problems I have. You wrote that you didn't have any problem using it, so I would like to know how you are implementing the reports. Here is the .cfm template that I'm using to open the report in a new window. I got the template with

RE: Another debate

2000-12-14 Thread DeVoil, Nick
For a developer, PHP has *one* big advantage over CF - user-defined functions. With CF5 that advantage just disappeared. BTW, you *can* write DBMS-independent code with PHP, if you use PHPLIB. But you don't have all of CF's cacheing features built in. PHP is a good technology. CF is a great

Making changes to a live Database

2000-12-14 Thread W Luke
Hi, I have a small change to make to a live database (create a new column in a table) which is in Access. I don't really want to download it and upload it again, as I will undoutedly lose data (or visitors will get an error). So I was wondering what people's experiences are of this kind of

Re: Purging CDATA and CGLOBAL

2000-12-14 Thread W Luke
What would prevent this functionality from working? If this functionality is not working what would be the safest way to remove the obsolete data? (Older than 1 day.) I use the following in my Application.cfm which checks and logs out a user after 15 minutes: CFIF DateDiff("n",

Not Working in Netscape

2000-12-14 Thread Rudy Rustam
Greeting, Run the code below in IE, it will fire javascript before submit the form. However, javascript is not running in Netscape. Unless the type="image" change to type="submit". Anyone mind to tell me why? Thanks - Rudy cfparam name="name1" default="no name" SCRIPT

RE: Making changes to a live Database

2000-12-14 Thread DeVoil, Nick
Will I'd definitely download it upload it again when the site isn't busy, if possible. Make sure you know exactly what steps you have to carry out how long they will take. Do a dummy run first. A variant of Murphy's Law says that DBA operations only go wrong when you're working directly on

RE: Making changes to a live Database

2000-12-14 Thread Rudy Rustam
i would write a simple page to alter the table and run it once. - rudy -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] Sent: Thursday, 14 December 2000 6:31 PM To: CF-Talk Subject: Making changes to a live Database Hi, I have a small change to make to a live database

RE: Making changes to a live Database

2000-12-14 Thread Daniel Lancelot
I suggest using an ALTER TABLE SQL statement - look up ALTER TABLE in access help (JET SQL) (I always create the statement on my development box - test it does what I want, then run it through a CF page on the live box...) HTH Dan -Original Message- From: W Luke [mailto:[EMAIL

Re: Making changes to a live Database

2000-12-14 Thread W Luke
I suggest using an ALTER TABLE SQL statement - look up ALTER TABLE in access help (JET SQL) (I always create the statement on my development box - test it does what I want, then run it through a CF page on the live box...) Worked great Cheers Will

Session Timeout Indicator

2000-12-14 Thread MIKE GEORGE
I have read somewhere (dont remember where) about how you can notify a user that their session is about to expire and let them say whether they want to continue or not. This prevents the user from getting timed if they are completing a page with a long form on it. Can someone please point me

RE: Session Timeout Indicator

2000-12-14 Thread Paul Johnston
I am sure there is a way that has been talked about, but the way I would do it (off the top of my head) is to use javascript to output a message box just before (30 seconds say) the session expires (nothing back to the server) saying "Your session is about to expire. Continue?" that when clicked

Re: WAV conversion to MP3

2000-12-14 Thread Dave Hannum
Download the FREE RealProducer from Real.com Dave = "What we need is a list of specific unknown problems we will encounter" David Hannum Web Analyst/Programmer Ohio University [EMAIL PROTECTED] (740) 597-2524 - Original Message - From: "Eric Dawson"

RE: Not Working in Netscape

2000-12-14 Thread Philip Arnold - ASP
Run the code below in IE, it will fire javascript before submit the form. However, javascript is not running in Netscape. Unless the type="image" change to type="submit". Anyone mind to tell me why? Any reason why the form has an action? If it's never going anywhere, then use it as an A

NS6 DOM

2000-12-14 Thread Philip Arnold - ASP
Has anyone built a working NS6 DOM yet? I've got it sniffing for the browser, but I can't get it to dynamically place or clip objects Any ideas anyone? Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44 (0)20 8680 1133 "Websites for the real world"

RE: Another debate

2000-12-14 Thread JustinMacCarthy
This is actually accurate. There is a module for PHP , which give a common interface to several DBs. Justin One big difference: in PHP you will have to write database-vendor specific code. The code to use Sybase is different than SQLServer is different than Oracle, etc. If portability is

Appointment Applicaton

2000-12-14 Thread Kent A. Orso
Fellow CFer's, Looking for a appointment application written in Cold Fusion. The application should be able to support multiple users and allow for scheduling of appointments on an hourly basis. Anyone know of such an animal?? Thanks In Advance, Kent

RE:query between 2 database types

2000-12-14 Thread Guy J. McDowell
Perhaps you could query the Oracle DB, insert or update the results to a temporary SQL7 table and then query it back out. Not a pretty work around and it carries overhead but it could work. Yours In Conservation, Guy J. McDowell, Webmaster The Ontario Federation of Anglers Hunters E-mail:

Re: Preventing Browsers Cacheing a .cfm file

2000-12-14 Thread Chris Norloff
I'm trying myself to sort out the browser cachine, proxy caching, encrypted pages cached in browsers but not in proxies, pages cached but requiring revalidation, etc. Confusing! I recommend starting with the Caching Tutorial at http://www.stars.com/Internet/Cache/ then check out his

Re: Another debate

2000-12-14 Thread Joe Sheble aka Wizaerd
All of this boils down to opinion and personal choice. You say CF is a great technology and PHP is a good technology, while I say PHP is a great technology and CF is only a good technology... either way, we could argue this for hours, days, weeks, years and neither one of us (not you

Re: WAV conversion to MP3

2000-12-14 Thread Eric Dawson
well I am thinking server side. where I could do the conversion from cold fusion at the time of posting of the sound file. Eric From: Michael She [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: WAV conversion to MP3 Date: Wed, 13 Dec 2000 23:51:18

RE: Another debate

2000-12-14 Thread mikec
cf_wack_him_on_the_pee_pee ** Original Subject: RE: Another debate ** Original Sender: "Braver, Ben:" [EMAIL PROTECTED] ** Original Date: Wed, 13 Dec 2000 15:06:09 -0500 ** Original Message follows... cf_grin Well, for one thing, your boss needs to brush up on his English, and learn

RE: cflock vs. cftransaction

2000-12-14 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Actually, per the definition of CFLOCK, DBs do benefit from this as far as I can tell. CFLOCK in exclusive mode, single thread's the piece of code you are trying to isolate. That piece of code cannot be executed by another thread until it's done.

Deducting one Hex value from another

2000-12-14 Thread Aidan Whitehall
I've got an RGB value in hex and want to deduct another hex value from it. Does anyone know what the syntax would be to do this in CFML? Just an indication of what functions to use would be a great help (is there a BaseN type function?). Thanks -- Aidan Whitehall [EMAIL PROTECTED]

Re: Making changes to a live Database

2000-12-14 Thread Bud
On 12/14/00, W Luke penned: I have a small change to make to a live database (create a new column in a table) which is in Access. I don't really want to download it and upload it again, as I will undoutedly lose data (or visitors will get an error). So I was wondering what people's experiences

RE: queries vs arrays

2000-12-14 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kevin, You can do something like this... cfquery name="qGetSomething" datasource="#dsn#" SELECT bean FROM table1 /cfquery cfloop from="1" to"#qGetSomething.Recordcount#" index="i" cfoutput

MS Word to WDDX Packet

2000-12-14 Thread McCabe, Kevin
Hi All, Has any one managed to do this? Using the WDDX Com Object and VBA Macros? If so any tips or code would be appreciated. Many Thanks - Kev McCabe Intranet Team Leader TEL: +44 (0) 20 7941 5502 MOB: +44 (0) 70 9225 2813

re: RE: Another debate

2000-12-14 Thread mikec
I have had employers call me in for CF programmer position and start by telling me that CF is for kids who like to play and that the real development way is ASP Usually when i produce some evidence to the contrary it shuts them up, but i never get the job :) I had a new boss come in , he

RE: Enterprise Manager Win 2000

2000-12-14 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Claude, It's probably that you don't have the right Client Network settings to connect to SQL server. Try this... Start -- Programs -- Microsoft SQL Server -- Client Network Utility Make sure your default Network Library is TCP/IP and not named

Re: CF/EJB hosting

2000-12-14 Thread netman
Good Day, www.atswebnet.com has MS SQL 7.0 access as well as CF 4.5. AS for EJB, what are you looking for a Servlet engine to run JSP or do you need a EJB Container app like Weblogic or Enhydra. I think it may be hard to find both as they are both pure Application servers. We do have Tomcat

Re: Making changes to a live Database

2000-12-14 Thread Jamie Keane
To complement what Daniel wrote, if you're going to run more than one alter statement, wrap them in a transaction. That way, you can test all you want, and should something screw up down the chain, the DB will revert to its original state. It makes life easy. -- Jamie Keane Programmer

RE: CFIF and CFOUTPUT

2000-12-14 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hey Mark, You might try outputting the value of groupsection right before you test it... it sounds like groupsection is evaluating to "off" everytime... do something like this: cfoutputThis is the value of groupsection: #groupsection#/cfoutput

Re: Another debate

2000-12-14 Thread Jamie Keane
It has COM support on NT only. The downside is if you wanted to migrate servers from NT to Unix, you're kinda hosed if you were using COM objects. Jamie -- Jamie Keane Programmer SolutionMasters, Inc. 9111 Monroe Rd., Suite 100 Charlotte, NC 28270 www.solutionmasters.com 704.563.5559 x 228

RE: NS6 DOM

2000-12-14 Thread Dan G. Switzer, II
Phillip, I recommend checking out the DynAPI2-it's a cross browser DHTML API that works with NS4+ (including 6) as well as IE4+. http://dynapi.sourceforge.net/ It has methods and add-ons for just about everything you could possible want-and the time you'll save from having to code around all

RE: ODBC Error 37000

2000-12-14 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hey Al, You might try going to the MS support site and running a query for single user mode... http://search.support.microsoft.com/kb/psssearch.asp?SPR=sqlT=BKT=AL LT1=7dLQ=single+user+modeS=FA=TDU=CFR=0D=sqlserver%2Bor%2Bodbc

Re: [Appointment Applicaton]

2000-12-14 Thread Alex
developer exchange on the alliare site "Kent A. Orso" [EMAIL PROTECTED] wrote: Fellow CFer's, Looking for a appointment application written in Cold Fusion. The application should be able to support multiple users and allow for scheduling of appointments on an hourly basis. Anyone know of such

Re: Enterprise Manager Win 2000

2000-12-14 Thread Greg Wolfinger
Claude: Are you using a devlopment SQL Server on the same machine that you upgraded or are you connecting to a server? If you have the server on your machine, make sure that the MSSQLSERVER is started in the services. Also, I would recommmend backing up your data, reformatting, splitting your

Re: WAV conversion to MP3

2000-12-14 Thread Greg Wolfinger
Eric: Are you lost? This is a ColdFusion mailing list. Greg - Original Message - From: "Eric Dawson" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, December 13, 2000 5:55 PM Subject: WAV conversion to MP3 I have been playing around with tellme.com for my

Re: Appointment Applicaton

2000-12-14 Thread Todd Ashworth
Yes .. I am writing one as we speak. It should be completed by the end of the year. It allows for scheduling down to 15 minute intervals and supports repeating appointments on a daily, weekly, monthly, quarterly and yearly basis an 'infinite' amount of time into the future. I can show you what

OT: Beware the imposter

2000-12-14 Thread Ben Forta
Hi all, sorry for the OT message, but ... Some creep has set up an e-mail account "[EMAIL PROTECTED]" and is sending out messages pretending to be me. Not that any of you would be fooled by the messages (they essentially badmouth ColdFusion, Allaire, and me, and the language is both immature and

RE: Internet/Intranet applications based of CF

2000-12-14 Thread Christopher Olive, CIO
Mary Jo Sminkey has developed CFWebstore (at the cleverly named CFWebstore.com...). it's an out of the box e-commerce solution. are you looking for pricing models? or someone to sell it for you? chris olive, cio cresco technologies [EMAIL PROTECTED] http://www.crescotech.com -Original

Re: Not Working in Netscape

2000-12-14 Thread Jay Brushett
Hi, Netscape has a nasty way of not seeing onclick (and other) events in an image tag or image input element. Wrap anchors around it and place the onclick code inside. a onclick=""input type=image /a Jay At 06:39 PM 12/14/2000 +0800, you wrote: Greeting, Run the code below in IE, it

Re: MS Word to WDDX Packet

2000-12-14 Thread David E. Crawford
There are plenty of examples in the WDDX sdk (www.wddx.org). DC - Original Message - From: "McCabe, Kevin" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, December 14, 2000 09:28 Subject: MS Word to WDDX Packet Hi All, Has any one managed to do this? Using

Re: Making changes to a live Database

2000-12-14 Thread Alex
just do it when you usually have the least traffic. adding a column would take under a minute Bud [EMAIL PROTECTED] wrote: On 12/14/00, W Luke penned: I have a small change to make to a live database (create a new column in a table) which is in Access. I don't really want to download it and

Re: Deducting one Hex value from another

2000-12-14 Thread Bill Davidson
I suppose you could convert to base 10 and use regular mathematical functions and then convert back to base 16 (using inputbaseN/formatbaseN to help you along). -Bill /intraget - Original Message - From: Aidan Whitehall [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday,

Simple Scripts

2000-12-14 Thread Gavin Myers
Just to be clear (before i mess something up) i can just delete the enitre cfdocs directory on a production server? Nothing bad will happen... right? ~~ Structure your ColdFusion code with Fusebox. Get the official book at

missing form fields that do exist

2000-12-14 Thread Vernon Horn
Recently a couple of my old, and heavily used scripts have started to occasionally throw a "specified form field cannot be found" error. The page doing the referring is validated, and the error message shows that they are in fact being referred from the correct template. I know that the

Re: Beware the imposter

2000-12-14 Thread Todd Ashworth
Doesn't Hotmail include the originating IP in their headers anymore? I know they used to. If they still do, you can just figure out their ISP and lodge a complaint. I'm sure you would get prompt action ;) Todd Ashworth - Original Message - From: "Ben Forta" [EMAIL PROTECTED] To:

Re: Beware the imposter

2000-12-14 Thread Howie Hamlin
Have you comlained to HotMail? Howie P.S. Then again - HotMail is owned by Microsoft. Microsoft owns ASP...hmmm I think I have a conspiracy therory g - Original Message - From: "Ben Forta" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, December 14, 2000 9:51 AM

oracle 8, win2000, and CF 4.5

2000-12-14 Thread Katie Bessiere
Is that just a disaster? We're running oracle 8 on a win2000 machine, and the database *literally* keeps disappearing. Not only that, but the backups aren't any good either, which makes no sense to me. (i'm just the CF girl, I know nothing about the rest of it).. However, I thought I'd ask if

RE: OT: Beware the imposter

2000-12-14 Thread mikec
Ouch I'm Ben Forta and so is my wife :) hope ya catch that nasty fella, goodluck #code.monkey# ** Original Subject: RE: OT: Beware the imposter ** Original Sender: "Ben Forta" [EMAIL PROTECTED] ** Original Date: Thu, 14 Dec 2000 11:39:11 -0500 ** Original Message follows... Hi

Re: Beware the imposter

2000-12-14 Thread Kevin Schmidt
A disgruntled stock holder maybe... - Original Message - From: "Ben Forta" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, December 14, 2000 8:51 AM Subject: OT: Beware the imposter Hi all, sorry for the OT message, but ... Some creep has set up an e-mail account

Re: Another debate

2000-12-14 Thread Billy Cravens
That article isn't necessarily good ammo: PHP pages/second: 47 ColdFusion pages/second: 29 -- Billy Cravens [EMAIL PROTECTED] (According to the article) Chasmo wrote: Here's some ammo for you if the debate suddenly goes "unmoot." ZDNet recently did comparisons of various scripting

Netscape refresh problem w/cf page

2000-12-14 Thread Robert Orlini
Hello, We have our home page using Cold Fusion to access dynamic data to update a new biography displayed on the page each day. One minor problem we notice, only in Netscape (we use 4.04), is that when you resize the screen the home page comes up blank; clicking reload brings it back. It does

RE: NS6 DOM

2000-12-14 Thread Philip Arnold - ASP
For those who work with a multi-browser DOM, I've at last got it working (with help from Nick DeVoil)... here's the detector and object selector; if(document.all) {nav = "ie4" doc = "document.all"; brO = "["; brC = "]"; sty = ".style";} else if(document.layers) {nav = "ns4" doc =

Re: CF/EJB hosting

2000-12-14 Thread Billy Cravens
Virtualscape has some JRun options now. -- Billy Cravens [EMAIL PROTECTED] netman wrote: Good Day, www.atswebnet.com has MS SQL 7.0 access as well as CF 4.5. AS for EJB, what are you looking for a Servlet engine to run JSP or do you need a EJB Container app like Weblogic or Enhydra.

Re: Deducting one Hex value from another

2000-12-14 Thread Dave Hannum
OK - educate me here. Why would you want to deduct one hex value from another. What are you accomplishing? Dave = "What we need is a list of specific unknown problems we will encounter" David Hannum Web Analyst/Programmer Ohio University [EMAIL PROTECTED]

Help on Pulldown - Please help...getting coldfusion rage here

2000-12-14 Thread Kim Ahlbrandt
is there a way to display more than one field on a pulldown menu. For instance...the users will be choosing a Texas Court on this pulldown menu but the Court name does not mean anything without the County name in front of it. So, in my cfselect cfselect name="rowid" query="court_q"

RE: owner-C of a .com-domain

2000-12-14 Thread misty . d . woodward
try http://www.betterwhois.com Misty -Original Message- From: bernd [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 14, 2000 12:13 AM To: cf-talk Cc: bernd Subject: RE: owner-C of a .com-domain http://www.networksolutions.com/cgi-bin/whois/whois Bernd VanSkiver [EMAIL PROTECTED]

Decrypting

2000-12-14 Thread Kevin Schmidt
I know I saw the URL for a site that allows decryption of CF filesanybody got it??? Kevin Schmidt, Web Technology Manager Allaire Certified Cold Fusion Developer pwb inc. integrated marketing communications 350 S. Main St., Suite 350 Ann Arbor, MI 48104 734.995.5000 (tel) 734.995.5002 (fax)

Re: Help on Pulldown - Please help...getting coldfusion rage here

2000-12-14 Thread Cami Lawson
why don't you try concantinating the fields in your query before the cfselect - Original Message - From: "Kim Ahlbrandt" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, December 14, 2000 10:42 AM Subject: Help on Pulldown - Please help...getting coldfusion rage here

Re: Appointment Applicaton

2000-12-14 Thread Kent A. Orso
Todd, Thanks for writing me about your developing application. I have checked out the Allaire Developer's Gallery and I found one that is close (SIBER) that might work. The problem is it won't allow for the scheduling of more than one appointment in the same timeframe. For instance, I need to be

RE: Help on Pulldown - Please help...getting coldfusion rage here

2000-12-14 Thread Adkins, Randy
Use the SIZE property cfselect name="rowid" SIZE=5 query="court_q" value="rowid" display="court_nm" required="Yes"/cfselect -Original Message- From: Kim Ahlbrandt [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 14, 2000 11:42 AM To: CF-Talk Subject: Help on Pulldown - Please

RE: Help on Pulldown - Please help...getting coldfusion rage here

2000-12-14 Thread David Livingston
Try doing a dynamic select statement with out the cfselect tag. EX: select name="RowID" cfoutput query="court_q" option value="#RowId#"#court_nm# - #county_nm#/option /cfoutput /select -Original Message- From: Kim Ahlbrandt [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 14, 2000

RE: Help on Pulldown - Please help...getting coldfusion rage here

2000-12-14 Thread Dan Haley
Combine the two fields in your query. In Oracle it would be like this: select county_nm || ' - ' || court_nm court_display In Access I believe it is: select count_nm ' - ' court_nm as court_display HTH, Dan -Original Message- From: Kim Ahlbrandt [mailto:[EMAIL PROTECTED]] Sent:

RE: Help on Pulldown - Please help...getting coldfusion rage here

2000-12-14 Thread Mark Johnson
Why not do it with a normal select? The code below will work. I personally never use the cform pieces and you can use them in combination. CFQUERY NAME="court_q" DATASOURCE="yourdsn" SELECT rowid, court_q, court_nm, county_nm FROM sometable WHERE somthing is true /CFQUERY SELECT NAME="rowid"

RE: queries vs arrays

2000-12-14 Thread Daye, Marianne
Thanks, guys, for asking and answering the right question! This is the perfect solution to my shopping cart dilemma. I'm not ready to tackle structures of arrays, yet, but this works just as well if not better: Loop through shopping cart (query) once to create a list of key fields. Use Row =

CYYDDD

2000-12-14 Thread Joseph Thompson
I know I can hack a date of the form CYDDD (like 100235) into it's proper date (08/22/2000) with the DayOfYear() function, but is there another way you MS SQL guys have figured out? ~~ Structure your ColdFusion code with Fusebox. Get the

RE: owner-C of a .com-domain

2000-12-14 Thread Philip Arnold - ASP
http://www.networksolutions.com/cgi-bin/whois/whois try http://www.betterwhois.com I prefer www.allwhois.com - it checks all registrars rather than just NetworkSolutions Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44 (0)20 8680 1133 "Websites for the real

Re: Decrypting

2000-12-14 Thread Greg Wolfinger
Kevin: I have the c++ source, but havnt bothered to compile the app. I think I still have the CFX tag that does it to. E-mail me directly [EMAIL PROTECTED] and ill send it to you. greg - Original Message - From: "Kevin Schmidt" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent:

RE: Decrypting

2000-12-14 Thread Larry Juncker
http://shroom.dv8.org/cfd/ Larry Juncker Senior Cold Fusion Developer Heartland Communications Group, Inc. -Original Message- From: Kevin Schmidt [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 14, 2000 12:18 PM To: CF-Talk Subject: Decrypting I know I saw the URL for a site that

Amazon using CF

2000-12-14 Thread Greg Wolfinger
Hey Guys: I was looking at some amazon.com source and notice quite a bit of whitespace, resembling CF output. Does anyone know if Amazon uses CF or what language they do use. Greg ~~ Structure your ColdFusion code with Fusebox. Get

RE: Decrypting

2000-12-14 Thread Philip Arnold - ASP
I know I saw the URL for a site that allows decryption of CF filesanybody got it??? http://shroom.dv8.org/cfd/ Be careful on legality of you decrypting and updating the code if someone else wrote it Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44 (0)20

CF_TwoSelectsRelated not working on one of my tables

2000-12-14 Thread John Crosby
Hello Everyone, I've been utilizing CF_TwoSelectsRelated for searches on several Access tables and on the tag has worked great on all but one table. The tables are designed the same, sorted on the same field and are almost the same except for the second field of the table. When the tag is

RE: Help on Pulldown - Please help...getting coldfusion rage here

2000-12-14 Thread Kim Ahlbrandt
I'm not sure how to do that... -Original Message- From: Cami Lawson [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 14, 2000 11:13 AM To: CF-Talk Subject: Re: Help on Pulldown - Please help...getting coldfusion rage here why don't you try concantinating the fields in your query

ORACLE and SQL

2000-12-14 Thread Todd McFarlin
Greetings, Being an Oracle person, I'm having a difficult time trying to make a CFQuery work correctly in SQL. The Problem: I have a database with thousands of rows. I need to select only 50 rows per query. The start row and end row need to be variables. Now, Oracle has a function

MY Apologies

2000-12-14 Thread Kent A. Orso
Sorry to all the list members for my last post, I was not paying attention to my reply address info. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: Decrypting

2000-12-14 Thread lsellers
I know I saw the URL for a site that allows decryption of CF filesanybody got it??? http://www.intrafoundation.com/links.html or http://www.intrafoundation.com/cf.html. In there someone. Something to do with shrooms I do believe. :) --min

RE: What are the recognized CF variable scopes?

2000-12-14 Thread Aidan Whitehall
In essence, refering to variables outside the scope of a tag is analogous to using global variables in other languages, something that was frowned upon in the books I read and the courses I took. The proper way, then, would be to explicitly pass all necessary parameters to a tag, and

RE: owner-C of a .com-domain

2000-12-14 Thread Bernd VanSkiver
Network solutions whois also checks all registrars. Bernd VanSkiver [EMAIL PROTECTED] ICQ #: 916324 -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 14, 2000 11:32 AM To: CF-Talk Subject: RE: owner-C of a .com-domain

Re: Appointment Applicaton

2000-12-14 Thread Todd Ashworth
Actually, it can do what you request, except you can't limit the number of 'trainers' and you can't have 2 'trainers' assigned to the same event .. so ... i gues it *doesn't* do quite what you request, heh. Technically, those are the only 2 limitations in the whole thing, though the multiple

RE: Help on Pulldown - Please help...getting coldfusion rage here

2000-12-14 Thread Christopher Olive, CIO
why not do the select by hand? SELECT NAME="rowid" CFOUTPUT QUERY="court_q" OPTION VALUE="#court_q.rowid#"#court_q.whatever the fieldname of the county is# - #court_q.court_nm# /CFOUTPUT /SELECT chris olive, cio cresco technologies [EMAIL PROTECTED] http://www.crescotech.com -Original

Re: Decrypting

2000-12-14 Thread Jamie Keane
I know there is an encrypt/decrypt CFX on Allaire's DevEx site. Worth a check-out! -- 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: Kevin Schmidt

RE: Amazon using CF

2000-12-14 Thread Dylan Bromby
I'm pretty sure Amazon has its own scripting language. I know Excite does. In fact there are a few high-end, high-volume sites that do that. -Original Message- From: Greg Wolfinger [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 14, 2000 9:32 AM To: CF-Talk Subject: Amazon using CF

Re: Help on Pulldown - Please help...getting coldfusion rage here

2000-12-14 Thread Shane Witbeck
I use regular select statements and just use an option tag something like this: cfoutput query="somequery" option value="#value_x##name_1# #name_2#/option /cfoutput OR you could use a cfloop to accomplish the same. Hope this helps. Shane Witbeck -- Original Message

Re: Help on Pulldown - Please help...getting coldfusion rage here

2000-12-14 Thread Cami Lawson
read the message from dan haley, there are examples in the email - Original Message - From: "Kim Ahlbrandt" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, December 14, 2000 11:41 AM Subject: RE: Help on Pulldown - Please help...getting coldfusion rage here I'm not

Re: Beware the imposter

2000-12-14 Thread Stephen M. Aylor
Yes they do Unless the guy signed up for the account at CompUsa or the library, and uses it from there - easy to track down - Original Message - From: "Todd Ashworth" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, December 14, 2000 8:09 AM Subject: Re: Beware the

CF4.5.1 SP2.

2000-12-14 Thread Neil H.
I am still experiencing huge memory leaks but I notice it is from Inetinfo.exe and NOT CF. There is no doubt in my mind the CF is the culprit, but how in the world does Allaire put out this lousy of a product update? This is reminiscent of Microsoft. If anyone from Allaire, especially their QA

Re: Beware the imposter

2000-12-14 Thread Jim McAtee
Ouch. - Original Message - From: "Kevin Schmidt" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, December 14, 2000 10:19 AM Subject: Re: Beware the imposter A disgruntled stock holder maybe... - Original Message - From: "Ben Forta" [EMAIL PROTECTED] To:

Re: CF_TwoSelectsRelated not working on one of my tables

2000-12-14 Thread W Luke
Post some of your code John then we can have a closer look. Will - Original Message - From: ""John Crosby"" [EMAIL PROTECTED] Newsgroups: dotcom.lists.cftalk Sent: Thursday, December 14, 2000 6:29 PM Subject: CF_TwoSelectsRelated not working on one of my tables Hello Everyone, I've

RE: Help on Pulldown - Please help...getting coldfusion rage here

2000-12-14 Thread Mark Johnson
To concatinate items in the query use: SELECT (item1 + item2) AS newitem FROM sometable Mark Johnson --- Senior Cold Fusion Developer Cardinal Communications -Original Message- From: Kim Ahlbrandt [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 14, 2000 5:42 PM

RE: CF_TwoSelectsRelated not working on one of my tables

2000-12-14 Thread Katie Bessiere
Are you using two CF_twoSelectsRelated on the same page? I ran into that when I used more than one on a page in two diff't forms, you have to name your forms, and then use the FormName attribute in the tag. Otherwise the second one on the page didn't work. I'm not sure what you would do if it's

RE: Oracle and SQL

2000-12-14 Thread John Stanley
Use the Maxrows argument in the CFQuery Tag: cfquery name="get_stuff" datasource="some_odbc_datasource" maxrows="50" Select * from the_table where user_id = 1 /cfquery ~~ Structure your

Re: ORACLE and SQL

2000-12-14 Thread Judith Campbell
If you're using native oracle drivers, and not ODBC, your CFQUERY content should contain oracle syntax, so rownum would be a valid option in the syntax. Judith Campbell Chief Technical Officer Digital Positions, Inc. [EMAIL PROTECTED] 404-351-9366 At 09:40 AM 12/14/00 -0800, you wrote:

RE: Help on Pulldown - Please help...getting coldfusion rage here

2000-12-14 Thread Adkins, Randy
Sorry I misread what you asked, a simply way is this: This way you can add as many fields as you want in the display line cfselect name="rowid" message="Please select one" required="Yes" cfoutput query="court_q" option value="#rowid#"#court_nm# #court_nm# #Court_nextField#/option /cfoutput

CGI.HTTP_REFERER and SSL

2000-12-14 Thread Chris Montgomery
Howdy, I have a simple payment form that submits to a secure page at AuthorizeNet. Once a customer makes a payment, they are returned to a receipt page on my remotely hosted site. The AuthorizeNet gateway submits transaction information back to this receipt page using a form POST method. The

Re: Decrypting

2000-12-14 Thread Joseph Thompson
Not that I would *ever* decrypt anything, but if you need a recursive template to plug in the *alleged* decrypt utility so you can decrypt entire directories, there may be one here : ) http://cfhub.com/tutorials/filereader/index.cfm ~~

Re: Amazon using CF

2000-12-14 Thread Alex Aguilar
BEA System's WebLogic It's a java app server. Somewhere in the $20 grand per processor range. Of course, it does allow for the personalization you see on Amazon's site. - Original Message - From: "Greg Wolfinger" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, December

RE: Just a stray thought

2000-12-14 Thread Peter Theobald
No, Toys R Us will not be running their own web site anymore at all. They have imported their entire inventory into Amazon's existing infrastructure to be displayed on Amazon's site. They are, however, still running Babies R Us at least for now. At 10:52 PM 12/13/00 -0500, Michael She wrote:

Re: Beware the imposter

2000-12-14 Thread Michael Thomas
Yeah hotmail still does that. This only happens after a reply to a reply though, at least as far as Ive ever noticed having used it for about 2 years now. HTH, Mike From: "Todd Ashworth" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: Beware the

Re: Enterprise Manager Win 2000

2000-12-14 Thread Michael Ross
I am running win2k and using enterprise manger to connect to a sql box on nt4.0. and a sqlbox on advancedwin2k server. I have been doing this for sometime with no problems. Thanks [EMAIL PROTECTED] 12/14/00 09:46AM Claude: Are you using a devlopment SQL Server on the same machine that you

  1   2   3   >