Re: Session variable problem

2000-05-11 Thread B.Cravens
Sounds like an internal network issue. Are you running any kind of shared ip addressing? (ie proxy server, etc.) That could cause the problem. Billy - Original Message - From: "David Berger" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 11, 2000 12:08 PM Subject: Ses

Re: \\ in ColdFusion Studio 4.5.1

2000-05-11 Thread B.Cravens
\\ is part of the UNC networking naming convention. So if you got to a file through a mapped share or Network Neighborhood, then you see the slashes. For example, if I grab a file called file.cfm off of the share webfolder on my server, webserver, then I'll see it as: \\webserver\webfolder\file.

Re: Can you pass a query??

2000-05-11 Thread B.Cravens
If you just wanna be different, stick the query results in a WDDX packet, and then deserialize it when you need the results again. A bit of extra overhead, but then you can brag that you're using xml :) Billy - Original Message - From: "Troy Johnson" <[EMAIL PROTECTED]> To: <[EMAIL PRO

Re: cfselect validation

2000-05-11 Thread B.Cravens
Actually, CFSelect is JavaScript (created at run-time). However, CFSelect won't create the JavaScript you're needing. Quick bit of code: function checkForm(){ if (document.formName.Organization.value != "") {document.formName.submit();} else {alert ("Error! You must choose an Organization.");

Re: CF Studio RDS question

2000-05-11 Thread B.Cravens
The local drives and RDS tab has been integrated. Click on the Explorer resource tab (has a computer icon on it), click on the drive drop down, look for "Allaire FTP & RDS". From there you can right click and delete a server like your used to. Billy - Original Message - From: "Russell,

Re: CFX_EXCEL

2000-05-09 Thread B.Cravens
You must have Excel installed on the web server. - Original Message - From: "David E. Crawford" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, May 09, 2000 10:56 AM Subject: CFX_EXCEL > Does anyone have any experience with this custom tag? I have it installed, > b

Re: CF Guru help needed - Caller Scope questions

2000-05-09 Thread B.Cravens
You have it a little flip-flopped. To make variables available to the custom tag, pass them as attributes of the custom tag. The caller scope is used inside of the custom tag to pass any values back to the calling page. Then those variables are available as local (Variables) scope variables. F

Re: Maintaining state through FORMs

2000-05-05 Thread B.Cravens
Either way is ok. It's just a matter of whether or not it will appear in the url and whether you want the variables available in form or url scope. It seems alot easier to pass one variable, as opposed to 2 form variables. Or maybe I'm just lazy. Billy > is it wrong to write this for forms... >

Re: uploading multiple files

2000-05-04 Thread B.Cravens
#file.serverfile# can only contain one value at a time. So your code will write the value for excfile into both fields in the db. Instead, do a cffile, then assign the file.serverfile to another variable, then do your next cffile, and so on. Ex: INSERT INTO table (resFile, excfile) VALU

Re: Allaire Certificate Program

2000-04-27 Thread B.Cravens
I would say that the certifications should include more than just CFML. First of all, CFML isn't that tough, and a certification loses its advanteg when any Joe can get it (no offense to anybody named Joe :) Additionally, look at some other certifications. For example, the MCSD is more than just

Re: Setting Up ODBC Datasources Thru CF Administrator

2000-04-27 Thread B.Cravens
Have you tested it on other workstations? Make sure it's server side, and not a workstation Java Applets problem. Billy - Original Message - From: "Chris Montgomery" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 27, 2000 10:25 AM Subject: Setting Up ODBC Datasources

Re: cf_excel??

2000-04-26 Thread B.Cravens
A couple of things to keep in mind: You cannot link directly to a file.xls. First of all, the web server won't execute any commands in here (cf code) because it's an xls file, not a cfm file. Additionally, the file won't work properly in Excel because it'll be filled with ASCII, not "Excel code

Re: My Personal Machine at home.

2000-04-26 Thread B.Cravens
You must have both the Server and the RDS service running to see local datasources. Can you see files through RDS? It sounds to me like Server is running (hence you can see the pages in the browser) but RDS (how Studio accesses the server). (RDS may be called Executive Service) Billy Cravens

Re: Understanding basic differences between browsers

2000-04-20 Thread B.Cravens
> Is there a site online which attempts to maintain relatively up to date > descriptions of differences so that people trying to code frames, etc. > can figure out how best to code them? Actually, the best resource I've found is in print: Javascript: The Definitive Guide by O'Reilly. It is very

Re: Question2 on FuseBox model

2000-04-19 Thread B.Cravens
Originally you had: Remove the extra quotation marks: Billy - Original Message - From: "aslam bajaria" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 19, 2000 10:26 AM Subject: Question2 on FuseBox model > First of all I would like to appreciate all the help. > Yo

Re: with multiple values pre-selected problem

2000-04-17 Thread B.Cravens
Nope. You'll have to do it using and tags.. wrap a cfoutput around .. and make it selected () according to whatever conditionality you need. Billy - Original Message - From: "Jeff Trull" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 17, 2000 1:57 PM Subject: with mu

Re: When are Form Variables created

2000-04-17 Thread B.Cravens
No, the link will take precedence over the onClick. Since the form never gets submitted, no form variables will be created. If you want a regular anchor to trigger the form submit, then use this instead: Submit. -- Billy Cravens [EMAIL PROTECTED] - Original Message - From: "Mi

Re: CF/Javascript

2000-04-11 Thread B.Cravens
> Is anyone familiar with a Javascript group js-jive.. by the same folks that run this list.. go to houseoffusion.com for info Billy Cravens [EMAIL PROTECTED] -- Archives: http://www.eGroups.com/list/cf-talk To Unsubsc