RE: Source Safe???

2002-11-05 Thread Michael Wolfe
-Original Message- From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com] Sent: Monday, November 04, 2002 2:50 PM To: CF-Talk Subject: RE: Source Safe??? Ok, what is your advice for where to store the project files? I want to develop all code remotely in a centralised folder.

SOT: Temporary tables in SQL2K

2002-11-05 Thread A.Little
Hi all, I'm writing a stored procedure (in SQL Server 2K) in which I need to create a couple of temporary tables (which are dropped when the sp has completed). How do I get around the fact that 2 users of the website may run the sp at (precisely) the same time, creating the possibility that one

Re: oddity with cfmx

2002-11-05 Thread Jochem van Dieten
Tony Weeg wrote: well, not broadcasting that functionality, or lack thereof would have been alot cooler, but thanks for the insight. no code, not an issueany file that i try to download, doesnt append the file extension any longeronly after the cfmx server upgrade So how come

MX Not starting

2002-11-05 Thread Robertson-Ravo, Neil (REC)
After a fairly good period of CFMX running sweetly... it is no longer starting and I am receiving these errors : default-err.log == jrunx.xml.XMLMetaData$CouldNotCreateDocumentException: Could not create document from location

Flash reload

2002-11-05 Thread Robertson-Ravo, Neil (REC)
How has people/MM got around the reloading of a Flash movie when the user decides to F5 their browser session? Does it still reload the movie from the beginning? Neil ~| Archives:

RE: Temporary tables in SQL2K

2002-11-05 Thread A.Little
Nevermind, I've found I can use the TABLE variable type in my sp so the table is only created locally to the sp (btw, this is new to SQL2K). Any advice/experience on the performance of this would still be appreciated, Alex I'm writing a stored procedure (in SQL Server 2K) in which I need

Re: JRE 1.4.1 and Flash Remoting

2002-11-05 Thread Dick Applebaum
Here is what I was told: Adding some information: between 1.3 and 1.4, Sun changed how the Exception class did the stack trace. In 1.3, the JVM is responsible for producing the trace. In 1.4, the JVM is responsible for creating an array of StackTraceElements, each of which corresponds to one line

Re: Converting ASCII characters

2002-11-05 Thread W Luke
Jochem van Dieten [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... If string is the string you want fixed: #Evaluate('REReplaceNoCase(string,##([0-9]+);,'##Chr(\1)##',A ll)')# But I am sure Ray will now join and tell us that Evaluate() is evil :) Thanks Jochem - I'm not gonna

Best way to share content across multiple web sites

2002-11-05 Thread Vishal Narayan
A recruitment web site we are working on is looking into a content sharing agreement with a large portal. Essentially we want to publish brief job listing details (job title, company name, brief description) on the portal which then link back to a co-branded page or display our content on

RE: oddity with cfmx

2002-11-05 Thread Tony Weeg
ill try, and let ya know ;) thanks jochem. tw -Original Message- From: Jochem van Dieten [mailto:jochemd;oli.tudelft.nl] Sent: Tuesday, November 05, 2002 4:26 AM To: CF-Talk Subject: Re: oddity with cfmx Tony Weeg wrote: well, not broadcasting that functionality, or lack thereof

RE: Java script ot help

2002-11-05 Thread Michael Corbridge
Joshua, You a bit thin on the details here, but make sure that the cf variable (#projectid#) is wrapped in cfoutput/cfoutput - mike -Original Message- From: Joshua Tipton [mailto:jtipton1;directvinternet.com] Sent: Monday, November 04, 2002 7:00 PM To: CF-Talk Subject: Java script

Re: Removing all HTML tags

2002-11-05 Thread Rick Root
Kris Pilles wrote: Does anyone have some CF or a script that will read from my table and remove all of the HTMl tags that are contained within??? Search the developer's exchange. I wrote a tag YEARS ago called CF_TagStripper that would strip all or some HTML tags so if you wanted to be able

Re: Upload multiple files?

2002-11-05 Thread Rick Root
Dan Phillips wrote: There was a post with a solution on this just a few days ago. Are the archives up and running? I know I posted a solution a few days a go but I'm far too lazy to do it again. David, look in the archives. - Rick

cfquery... Match text and display to template

2002-11-05 Thread FlashGuy
Hi, Is there a way to do the following with a query. I'm running CF and MySQL. I want to display from the field strSelect when I get a match on d:\test only even though the field could contain d:\mywork and d:\documents Presently I'm displaying *everything* from the strSelect field. Here is

RE: Removing all HTML tags

2002-11-05 Thread Steve Green
Or you could try a sexy little Regex :) http://www.howtodothings.com/showarticle.asp?article=37 SteG. -Original Message- From: Rick Root [mailto:rroot;wakeinternet.com] Sent: 05 November 2002 12:59 To: CF-Talk Subject: Re: Removing all HTML tags Kris Pilles wrote: Does anyone have

Re: refresh from server not client cache on back button

2002-11-05 Thread Chris Norloff
You can use cfheader, and write an HTTP header. cache-control is part of HTTP 1.1 I think this will keep all caches from storing the file (public/proxy caches, and private/browser caches): cfheader name=cache-control value=no-cache,no-store Check your favorite HTTP reference for other possible

RE: Flash reload

2002-11-05 Thread dennis baldwin
Hey Neil, By default the movie will refresh. Here's a basic tutorial of how to get it around it (requires a little more work). I'm not saying this is the best example of how to accomplish something like this but hopefully it should spark some ideas.

RE: Flash reload

2002-11-05 Thread Robertson-Ravo, Neil (REC)
Yep, I thought this was the case and actually, in my opinion this is still a HUGE flaw in a Flash movie. I will look into this, but I can say that if its an arse to implement, I wont be doing it! N -Original Message- From: dennis baldwin [mailto:dennis;zapdesigns.com] Sent: 05 November

[OT] New MX Community Site

2002-11-05 Thread dennis baldwin
Gals/Guys, I apologize for the OT email but I just wanted to let you know of a new site that will focus on Macromedia's MX technologies - www.devmx.com. It was launched early last week by Todd Rafferty and me with help from many others, ie Edoardo Zubler, Kevin Bridges, and Justin Watkins.

Dump a SQL table into an Excel spreadsheet

2002-11-05 Thread Bosky, Dave
What would be the best method for dumping a SQL table into an Excel spreadsheet and allowing the user to download it? Thx, Dave HTC Disclaimer: The information contained in this message may be privileged and confidential and protected from disclosure. If the reader of this message is not the

Re: Dump a SQL table into an Excel spreadsheet

2002-11-05 Thread Jochem van Dieten
Bosky, Dave wrote: What would be the best method for dumping a SQL table into an Excel spreadsheet and allowing the user to download it? The easiest way is to dump it into a .csv and then have the user download that using cfcontent. Jochem

RE: HELP!! sql wierdness ERROR message

2002-11-05 Thread Philip Arnold - ASP
Honestly I'm still a little confused here... I still don't think that PerserveSingleQuotes() does what you suggest. As far as I understand it (which may turn out to be not at all) CF will automatically escape single quotes in variables placed inside a cfquery. I've never found it to be 100%

RE: HELP!! sql wierdness ERROR message

2002-11-05 Thread Philip Arnold - ASP
Isn't it impossible to do this when you're using Access? I know you shouldn't be using Access, etc., but I've never been able to get multiple SQL statements to work in Access. Is there a trick I'm missing, or is this just something else to live with and remind me I shouldn't be using

Re: Flash reload

2002-11-05 Thread Stephen Moretti
Yep, I thought this was the case and actually, in my opinion this is still a HUGE flaw in a Flash movie. I will look into this, but I can say that if its an arse to implement, I wont be doing it! I don't think you can really call it a flaw with anything, least of all Flash. If a user hits

RE: Dump a SQL table into an Excel spreadsheet

2002-11-05 Thread Justin Hansen
Here are a couple of UDF's should help. QueryToCsv http://www.cflib.org/udf.cfm?ID=556 CSVFormat http://www.cflib.org/udf.cfm?ID=404 Enjoy! Justin Hansen -- Uhlig Communications Systems Engineer -- [EMAIL PROTECTED] 913-754-4273 Office

RE: Source Safe???

2002-11-05 Thread Andy Clary
2) Set up a seperate dev environment for each developer. Let each developer manage their own project, and use VSS as a central file repository. This has worked quite well for me in the past. This is what we do, each developer has a copy of cf server running locally and each manages their own

OT: IRS Webservices

2002-11-05 Thread Kris Pilles
Does anyone know if there are any webservices that exist to assist us with our w2, 1099 etc Creation for the year??? Evidentally last year we failed to make some mandatory changes to our forms and we received an nasty letter from the IRS So I am hoping we will be ale to find a webservice

RE: Temporary tables in SQL2K

2002-11-05 Thread Andy Clary
We use table variables extensively in our sp's. They seem to work quite nicely. Also, bol (books online) mentions that they perform better than temp tables. Andy -Original Message- From: A.Little [mailto:A.Little;open.ac.uk] Sent: Tuesday, November 05, 2002 2:43 AM To: CF-Talk Subject:

CFMAIL

2002-11-05 Thread Eric Creese
I just tested it again and it fails no matter where I get the file. Also I am trying to use both MIMEattach and cfmailparm but not together. CFMAIL TO=#form.emailto# FROM=#GetSenderEmail.sender# SUBJECT=#form.emailsubject# SERVER=mymailhost.com !---mimeattach=#form.emaildoc# ---

RE: JRE 1.4.1 and Flash Remoting

2002-11-05 Thread Stephenie Hamilton
It doesn't work at all when I switch it. This is on a shared server though, so I had to do some tweaking in the first place to get remoting to work. ~~ Stephenie |-Original Message- |From: Stacy Young [mailto:Stacy.Young;sfcommerce.com] |Sent: Monday, November 04, 2002 6:48 PM

Writing out an HTML file using CFFILE

2002-11-05 Thread Thane Sherrington
I'm trying to write out the HTML file that CF creates so that I can attach it to an e-mail. When I use CFFILE it fails because of the CF code within the HTML I'm including in the output= portion. How can I do this? T ~|

Re: CFMAIL

2002-11-05 Thread Randell B Adkins
Make sure the FORM.EMAILDOC is a complete path and file. I used this example and worked: CFMAIL TO=[EMAIL PROTECTED] FROM=[EMAIL PROTECTED] SUBJECT=test SERVER=mymailhost.com mimeattach=D:\Inetpub\wwwroot\docs\testfile.zip THIS IS A TEST MESSAGE TESTING /cfmail [EMAIL PROTECTED] 11/05/02

RE: Writing out an HTML file using CFFILE

2002-11-05 Thread Mark A. Kruger - CFG
Thane, If you are using CF 5: Use cfsavecontent to trap the output html. Like so: cfsavecontent variable=myHtml Some html, some CF ... whatever... /cfsavecontent You CFFILE operation then uses output=#myHTML# -mk P.S. watch out for cfsetting enablecfoutputonly=yes -Original

CFMAIL

2002-11-05 Thread Eric Creese
Ok. I did as you did and it worked but I am only able to attach files from the server and not my client machine. I also got it to work with CFMAILPARAM as well, but there to I can not attach files from a client machine only yhr server. When I try to attach files from my client machine I get an

RE: CFMAIL

2002-11-05 Thread Lofback, Chris
Like all CF, CFMAIL is a server-side process and it can only attach files that the server can reach. Normally, you would upload the file to the server and then CFMAIL it as an attachment. I guess you could map your client drive on the server and hardcode the file path, but that doesn't seem like

RE: Writing out an HTML file using CFFILE

2002-11-05 Thread Thane Sherrington
At 09:26 AM 05/11/02 -0600, Mark A. Kruger - CFG wrote: Thane, If you are using CF 5: Use cfsavecontent to trap the output html. Like so: Thanks a lot. This works perfectly. T ~| Archives:

CFMAIL

2002-11-05 Thread Eric Creese
Ok, I will use CFFILE to load the file to a folder on my server. how do I then in the CFMAIL tag look for the file I want to attach? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Source Safe???

2002-11-05 Thread Douglas.Knudsen
thanks all for the info -Original Message- From: Andy Clary [mailto:aclary;teleplanwireless.com] Sent: Tuesday, November 05, 2002 9:53 AM To: CF-Talk Subject: RE: Source Safe??? 2) Set up a seperate dev environment for each developer. Let each developer manage their own project, and use

Re: CFMAIL

2002-11-05 Thread Randell B Adkins
You will have to already know the file path/name when you reach the CFMAIL tag. If you need the file name from the END user, you can setup a form and ask for the information prior to accessing the CFMAIL tag on an action page persay. This file then would be from the END Users machine not from

SLOW! What is hanging up Cold Fusion?

2002-11-05 Thread Paul Sinclair
My Cold Fusion server is for some reason absolutely grinding to a halt. I'm running IIS on Win2000 Server. IIS is running fine but any cfm template just takes forever to load. I'm running 2 sites on MS Access based db and 1 site on a SQL based db. Doesn't seem to be any correlation between

RE: CFMAIL

2002-11-05 Thread Lofback, Chris
Try something like this in the template that processes the form, where FileAttachment is the file field on the form: CFIF Len(Form.FileAttachment) CFFILE ACTION=UPLOAD FILEFIELD=FileAttachment DESTINATION=c:\inetpub\uploads NAMECONFLICT=MAKEUNIQUE CFSET

CFMAIL

2002-11-05 Thread Eric Creese
I am now loading the file to a temp folder on the server, but when I USE CFMAILPARAM file=d:\mail\temp\#form.emaildoc# I get the following error. The resource d:\mail\temp\C:\CFusionMX\runtime\servers\default\SERVER-INF\temp\wwwroot-tmp\neotmp20023.tmp\ was not found. I think I am getting

Re: Dump a SQL table into an Excel spreadsheet

2002-11-05 Thread Rick Root
I've heard you can also dump an HTML table to excel by passing a header of Content-type: application/excel or something like that... - Rick ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Flash reload

2002-11-05 Thread Kevin Graeme
questions are Why does your flash looks so much like HTML that the user is reloading the page? How come the user is reloading at all? Is something missing from the page? Never underestimate what stupid things users will do. Good UI only goes so far in preventing these mishaps. I was

Re: SLOW! What is hanging up Cold Fusion?

2002-11-05 Thread Ian Lurie
Any chance you're storing client vars in the registry? That'll cause exactly the behavior you're seeing. On 11/5/02 7:47 AM, Paul Sinclair [EMAIL PROTECTED] wrote: My Cold Fusion server is for some reason absolutely grinding to a halt. I'm running IIS on Win2000 Server. IIS is running fine

RE: Dump a SQL table into an Excel spreadsheet

2002-11-05 Thread Bosky, Dave
I've tried using the web query feature in excel but never works with cold fusion pages. Has anyone had any success using the web query feature? Dave -Original Message- From: Rick Root [mailto:rroot;wakeinternet.com] Sent: Tuesday, November 05, 2002 10:47 AM To: CF-Talk Subject: Re: Dump

Re: CFMAIL

2002-11-05 Thread Randell B Adkins
There is your PROBLEM: d:\mail\temp\C:\CFusionMX\runtime\servers\default\SERVER-INF\temp\wwwroot-tmp\neotmp20023.tmp\ PLUS!!! There should NOT be a trailing \ at the end.. that indicates a directory The file does not exists at D:\MAIL\TEMP\C:\ ~ You need to use the exact path: Depending

RE: Flash reload

2002-11-05 Thread Kevin Graeme
Hmm. Upon further inspection, that script I posted probably won't actually work to modified to disable the F5 key. -Kevin Graeme Upon further inspection, these are loafers. ~| Archives:

Re: SLOW! What is hanging up Cold Fusion?

2002-11-05 Thread Paris Lundis
I always suspect the access databases run repair and compact on them... make sure your ODBC drivers are current. outside of that... how much memory, disk and CPU are on the box? Paris Lundis Founder Areaindex, L.L.C. http://www.areaindex.com http://www.pubcrawler.com 412-292-3135

RE: Flash reload

2002-11-05 Thread Robertson-Ravo, Neil (REC)
Well, Irt.org is good for some things, but if a user disables .JS then you are stuffed! -Original Message- From: Kevin Graeme [mailto:kgraeme;facstaff.wisc.edu] Sent: 05 November 2002 15:22 To: CF-Talk Subject: RE: Flash reload questions are Why does your flash looks so much like

RE: SLOW! What is hanging up Cold Fusion?

2002-11-05 Thread Mark A. Kruger - CFG
Check the spool folder for zero byte files (cf 4.x - 5) -Original Message- From: Paul Sinclair [mailto:lists;mail1.kingcrest.com] Sent: Tuesday, November 05, 2002 9:47 AM To: CF-Talk Subject: SLOW! What is hanging up Cold Fusion? My Cold Fusion server is for some reason absolutely

Passing Parameters between Database tables ??

2002-11-05 Thread Ian Vaughan
Hi I would really appreciate some advice on this problem I am having please, and would very much appreciate any advice/guidance on the best way to achieve. I have a database table with id, doctitle, docsummary and three fields called category1, category2 and category3. The category1 field

RE: SLOW! What is hanging up Cold Fusion?

2002-11-05 Thread Douglas.Knudsen
many things can cause this. Check your mail spool. what kind of queries are you running? Big, long queries tie up threads, you may need to tighten the SQL and/or mess with the CF Admin seetings for the num of simultaneaous requests. Also, this ODBC connections to the Access DBs should have

RE: SLOW! What is hanging up Cold Fusion?

2002-11-05 Thread Adrocknaphobia Jones
What version of CF? CF 4.5 used to leak memory on a couple of my systems. Never really found out what the root of the problem was, the easy solution was to schedule the cold fusion service to restart every couple of days. Reboot the entire box and see if the speed picks up. Open up task manager

Mapping

2002-11-05 Thread rick
I'm new at this, but here's a problem I don't understand. I'm working on an intranet site. We have a CD tower with some discs with training programs on them. In our old HTML based intranet, we could just drop a relative path into an HREF link to call something on the tower (eg.

RE: Mapping

2002-11-05 Thread Adrian Lynch
Should you be looking at webserver mappings instead of the CF ones? Ade -Original Message- From: [EMAIL PROTECTED] [mailto:rick;mouseherder.com] Sent: 05 November 2002 16:19 To: CF-Talk Subject: Mapping I'm new at this, but here's a problem I don't understand. I'm working on an

CFMAIL

2002-11-05 Thread Eric Creese
PROBLEM RESOLVED. This worked. Thanks to all that helped out. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ:

RE: HTML E-mails with CFMAIL

2002-11-05 Thread Matt Robertson
Isaac, Is there any particular reason you preface the boundary var with =_NextPart_? That's not something I'm doing. I've looked at the gargantuan list of RFC's at http://faqs.org (rotten search facilities) and it doesn't appear to be a requirement. I've seen that used on some message source

RE: Passing Parameters between Database tables ??

2002-11-05 Thread Mark A. Kruger - CFG
Ian, Thanks for trying to explain what you are doing so thoroughly - that always helps. However, in this case I'm not sure I'm following you. You have 3 columns in the same table that cascade - category1's value determines the value of category2 etc. I think that you might want to split off the

RE: SLOW! What is hanging up Cold Fusion?

2002-11-05 Thread Paul Sinclair
It is CF 4.5, Enterprise. I have rebooted the system several times - still goes slow. Client vars not stored in registry. I run a compact and repair routine on the Access db's on a daily basis to keep them as clean as possible. I am getting horrendous numbers of errors like below in server.log

Re: Mapping

2002-11-05 Thread Chris Norloff
We don't use windows, but I think you shouldn't have a // in front of the relative link. Is the CD tower on a different machine than the CFserver? CF mapping just makes a relative address into an absolute address on the same machine. Another possbility for you is to place the correct intranet

RE: Mapping

2002-11-05 Thread Mark A. Kruger - CFG
You should append something to the beginning of your 2 slashes - for example: file://dvd-tower/blah.html or http://dvd-tower/blah.html Also, creating a CF mapping will do 0 for this problem. CF mappings are designed for use withing the CF code - for cfinclude for example. Placing code inside

RE: SLOW! What is hanging up Cold Fusion?

2002-11-05 Thread Mark A. Kruger - CFG
1 meg of memory? Well that could be your problem right there (lol). The errors below aren't terribly useful - they are common for slow pages. Often they are generated by a user stopping the request because it takes too long. What about your server processes and swap file etc. Have you checked to

RE: Flash reload

2002-11-05 Thread Stacy Young
What about recording the users state in a local shared object? Stace -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:Neil.Robertson-Ravo;csd.reedexpo.com] Sent: Tuesday, November 05, 2002 11:07 AM To: CF-Talk Subject: RE: Flash reload Well, Irt.org is good for some things,

RE: SLOW! What is hanging up Cold Fusion?

2002-11-05 Thread Paul Sinclair
I also notice that when I try to stop CF using the Services panel, it never stops gracefully. Always gets error message re Error 1067: The process terminated unexpectedly and then the system proceeds to stop IIS as well. This add anything to try and decipher the problem? Thanks, Paul :

Re: Mapping

2002-11-05 Thread Jeffry Houser
Perhaps you want a http mapping. It is kind of like a CF Mapping, except they work from a web server instead of from a ColdFusion application server. At 10:18 AM 11/5/2002 -0600, you wrote: I'm new at this, but here's a problem I don't understand. I'm working on an intranet site. We have

Mac Error

2002-11-05 Thread George R. Scocca
Hello All, I haven't been on this list for a while so please excuse me if this has already been covered. I'm running CF5 and SQL 2000 on a Win2K Server and all users with Mac PC's are getting an upload error when submitting a form field in our discussion board. Any suggestions on what we might

RE: SLOW! What is hanging up Cold Fusion?

2002-11-05 Thread Paul Sinclair
Meant 1 gig memory. Sorry. Paul : -Original Message- : From: Mark A. Kruger - CFG [mailto:mkruger;cfwebtools.com] : Sent: Tuesday, November 05, 2002 11:36 AM : To: CF-Talk : Subject: RE: SLOW! What is hanging up Cold Fusion? : : : 1 meg of memory? Well that could be your problem right

RE: SLOW! What is hanging up Cold Fusion?

2002-11-05 Thread Adrocknaphobia Jones
If you are sitting at the box do the pages load in a normal time? If so, it could be your firewall hanging packets. Adam Wayne Lehman Web Systems Developer Johns Hopkins Bloomberg School of Public Health Distance Education Division -Original Message- From: Mark A. Kruger - CFG

Re: Dump a SQL table into an Excel spreadsheet

2002-11-05 Thread jon hall
If you are familiar with DTS, the easiest way would be to create a dts package and call it from a stored proc on the page to write out the excel file. 15 minutes to get the dts right and 3 lines of cf code to call the sp. I'd really recommend at least trying it this way, dts can be quite rewarding

RE: Flash reload

2002-11-05 Thread Lee Fuller
Was going to be my suggestion! Hey now - don't steal my ideas Stacy! ;) | -Original Message- | From: Stacy Young [mailto:Stacy.Young;sfcommerce.com] | Sent: Tuesday, November 05, 2002 8:37 AM | To: CF-Talk | Subject: RE: Flash reload | | | What about recording the users state in a

RE: Mac Error

2002-11-05 Thread Kelly Tetterton
There are 2 things to keep in mind with Mac IE users: 1) mac IE will append a trailing space to *every* form field, so all form fields MUST be trimmed; 2) macs will create false binaries on uploads, so you have to check if something is really truly being uploaded; we do it (roughly) thusly:

RE: SLOW! What is hanging up Cold Fusion?

2002-11-05 Thread Paul Sinclair
No - even when I log in on the server box the CF pages come up slow. Paul : -Original Message- : From: Adrocknaphobia Jones [mailto:adrocknatalk;hotmail.com] : Sent: Tuesday, November 05, 2002 11:47 AM : To: CF-Talk : Subject: RE: SLOW! What is hanging up Cold Fusion? : : : If you are

RE: outputting all client vars

2002-11-05 Thread Adrian Lynch
I don't think you can view them like that. Try cfoutput cfloop list=#GetClientVariablesList()# index=i delimiters=, #i#br /cfloop /cfoutput See if that works. Ade -Original Message- From: Will Swain [mailto:will;hothorse.com] Sent: 05 November 2002

RE: outputting all client vars

2002-11-05 Thread Will Swain
tried that: An error occurred while evaluating the expression: #CLIENT# Error near line 36, column 15 works for session though. Cheers will -Original Message- From: Randell B Adkins [mailto:AdkinsR;GAO.GOV] Sent: 05 November 2002 17:07 To: CF-Talk Subject: Re: outputting all

RE: outputting all client vars

2002-11-05 Thread Everett, Al
What version of CF? -Original Message- From: Will Swain [mailto:will;hothorse.com] Sent: Tuesday, November 05, 2002 12:14 PM To: CF-Talk Subject: RE: outputting all client vars tried that: An error occurred while evaluating the expression: #CLIENT# Error near line

RE: Dump a SQL table into an Excel spreadsheet

2002-11-05 Thread Thane Sherrington
At 10:59 AM 11/5/02 -0500, Bosky, Dave wrote: I've tried using the web query feature in excel but never works with cold fusion pages. Has anyone had any success using the web query feature? Yes. I've used a fair bit. If you're interested, e-mail me off list and I'll send you some sample stuff

RE: outputting all client vars

2002-11-05 Thread Will Swain
thats the one Adrian!! How would I dislay the value of the variables too, as that just gives me the variable names? Thanks a bunch will -Original Message- From: Adrian Lynch [mailto:adrian.l;thoughtbubble.net] Sent: 05 November 2002 17:09 To: CF-Talk Subject: RE: outputting all client

RE: Dump a SQL table into an Excel spreadsheet

2002-11-05 Thread Bosky, Dave
Do you happen to have some sample code I could use as a guide. I haven't really done much with DTS. Thanks, Dave -Original Message- From: jon hall [mailto:jonhall;ozline.net] Sent: Tuesday, November 05, 2002 11:49 AM To: CF-Talk Subject: Re: Dump a SQL table into an Excel spreadsheet

RE: outputting all client vars

2002-11-05 Thread Will Swain
CF5 will -Original Message- From: Everett, Al [mailto:AEverett;askallied.com] Sent: 05 November 2002 17:18 To: CF-Talk Subject: RE: outputting all client vars What version of CF? -Original Message- From: Will Swain [mailto:will;hothorse.com] Sent: Tuesday, November 05, 2002

RE: outputting all client vars

2002-11-05 Thread Randell B Adkins
#Evaluate(i)# [EMAIL PROTECTED] 11/05/02 12:22PM thats the one Adrian!! How would I dislay the value of the variables too, as that just gives me the variable names? Thanks a bunch will -Original Message- From: Adrian Lynch [mailto:adrian.l;thoughtbubble.net] Sent: 05 November 2002

Re: Flash reload

2002-11-05 Thread Sean A Corfield
On Tuesday, Nov 5, 2002, at 07:22 US/Pacific, Kevin Graeme wrote: I was wondering about disabling/remapping the keyboard keys with JavaScript, and while most say it can't be done, there was this interesting post I found. It may not be perfect, but it could be a place to start fiddling:

Re: Flash reload

2002-11-05 Thread Sean A Corfield
On Tuesday, Nov 5, 2002, at 01:41 US/Pacific, Robertson-Ravo, Neil (REC) wrote: How has people/MM got around the reloading of a Flash movie when the user decides to F5 their browser session? Does it still reload the movie from the beginning? If you want your Flash movie to 'remember'

Re: outputting all client vars

2002-11-05 Thread Stephen Moretti
How would I dislay the value of the variables too, as that just gives me the variable names? #i# : #client[i]#br should do it... Must confess I haven't tried it Otherwise ~shudder~ : evaluate(client.i) Regards Stephen

RE: outputting all client vars

2002-11-05 Thread Mark Johnson
cfoutput cfloop list=#GetClientVariablesList()# index=i delimiters=, #i# = #client[i]#BR /cfloop /cfoutput -Original Message- From: Will Swain [mailto:will;hothorse.com] Sent: Tuesday, November 05, 2002 9:23 AM To: CF-Talk Subject: RE: outputting all client

RE: Dump a SQL table into an Excel spreadsheet

2002-11-05 Thread Kola Oyedeji
What exactly are Excel web queries? I've heard Its an alternative but That's about all I know about it. Kola -Original Message- From: Thane Sherrington [mailto:tsherr;auracom.com] Sent: 05 November 2002 17:14 To: CF-Talk Subject: RE: Dump a SQL table into an Excel spreadsheet

RE: outputting all client vars

2002-11-05 Thread Adrian Lynch
Try this... cfoutput cfloop list=#GetClientVariablesList()# index=i delimiters=, #i#: Evaluate(CLIENT. #i#)br /cfloop /cfoutput Ade -Original Message- From: Will Swain [mailto:will;hothorse.com] Sent: 05 November 2002 17:23 To: CF-Talk Subject: RE:

RE: outputting all client vars

2002-11-05 Thread Robert Polickoski
Another way to just see the values for debugging is cfdump var=#CLIENT# the output isn't pretty, but it's there. Robert J. Polickoski Senior Programmer, ISRD Inc. (540) 842-6339 [EMAIL PROTECTED] AIM - RobertJFP -- Original Message -- From: Mark Johnson

RE: outputting all client vars

2002-11-05 Thread Will Swain
that works randell. Thanks guys will -Original Message- From: Randell B Adkins [mailto:AdkinsR;GAO.GOV] Sent: 05 November 2002 17:31 To: CF-Talk Subject: RE: outputting all client vars #Evaluate(i)# [EMAIL PROTECTED] 11/05/02 12:22PM thats the one Adrian!! How would I dislay the

cffile output including Quotes

2002-11-05 Thread Les Mizzell
Not 100% sure on this: Need to generate output like: Les Mizzell,Check Testing Company,100 MyStreet,MyCity,NC,2,123-45-6789,[EMAIL PROTECTED],...and more and more inside a cffile tag. Line above contains close to 50 variables CFFILE ACTION=Write

duplicate vals written to db

2002-11-05 Thread Nick Varner
We are having problems with our shopping cart. Somehow the user is getting duplicate line items placed in their cart, it doesn't happen to every line item and it doesn't happen to every user. We have not been able to duplicate this problem, we have also contacted the customers and they don't seem

RE: Dump a SQL table into an Excel spreadsheet

2002-11-05 Thread Les Mizzell
: What exactly are Excel web queries? I've heard Its an alternative but : That's about all I know about it. 1. Open Excel (I'm using Office 2000 here) 2. On the data menu and select Get External Data 3. Click New Web Query 4. Enter the address of the page that generates the data:

RE: Flash reload

2002-11-05 Thread Mark A. Kruger - CFG
Just remember that there is a limitation on the amount of data you can store in a shared object. I think it's a 100k without a prompt for user permission. Mark A. Kruger, MCSE, CFG www.cfwebtools.com www.necfug.com mxc.blogspot.com ..no more brochures! -Original Message- From: Sean A

RE: Flash reload

2002-11-05 Thread Mike Chambers
fyi, Flash 6 has support for named anchors, which in the case below could address your problem. basically, named anchors allow you to book mark or navigate to specific sections of a flash movie. since you are using Flash 5 though, this won't help you much. There are solutions, but they are

RE: duplicate vals written to db

2002-11-05 Thread Everett, Al
I would suspect user error on this. There are still a lot of people out there that think you need to double-click a link to go to a page/add an item to your cart/view a picture/etc. Most of the time this isn't a problem, but occassionally it is. Same with form buttons. I don't have a solution to

Re: cffile output including Quotes

2002-11-05 Thread Randell B Adkins
Out put all the information to a Variable then output that variable in the CFFILE command. [EMAIL PROTECTED] 11/05/02 12:49PM Not 100% sure on this: Need to generate output like: Les Mizzell,Check Testing Company,100 MyStreet,MyCity,NC,2,123-45-6789,[EMAIL PROTECTED],...and more and

Re: duplicate vals written to db

2002-11-05 Thread Randell B Adkins
Not sure how your even getting your variables. Check your action page based on what the user clicks. Other than that, without some examples, hard to determine why. [EMAIL PROTECTED] 11/05/02 12:59PM We are having problems with our shopping cart. Somehow the user is getting duplicate line items

CFML Bug or Not? Anyone know

2002-11-05 Thread Graham Pearson
I have been writing my own web based calendaring system and have been able to duplicate a problem that I have been receiving which I am unable to solve. Problem is if one of the event administrators add's an event and it happens to put in a comma the page breaks with the following error

RE: cffile output including Quotes

2002-11-05 Thread Mark A. Kruger - CFG
Les, Create the variable FIRST using string concatenation or cfsavecontent . If all the text is going to be text qualified, use the listqualify() function to encase it in quotes after you have created the list. You have to becareful with the commas though they can screw up the number of items in

Re: cffile output including Quotes

2002-11-05 Thread Rick Root
CFSET QUOTE = '' CFFILE ACTION=Write FILE=C:\Inetpub\Files\blah..blah.. OUTPUT=This is one #QUOTE#way#QUOTE# to #QUOTE#do it.#QUOTE# Les Mizzell wrote: Not 100% sure on this: Need to generate output like: Les Mizzell,Check Testing Company,100

  1   2   >