Re: migrate data stored by cf 4.5 to cfmx (unicode problem?)

2003-01-29 Thread Jochem van Dieten
Toby Tremayne wrote: I wonder though whether it's a CF thing or a copy/paste thing - can encoding elements from word be pasted into a plain textarea on a website? Or is it more likely that the earlier version of CF stored things incorrectly and cfmx finally does it right? More likely that

Re: Coldfusion and Verity Results ???

2003-01-29 Thread Ian Vaughan
Ryan When I set up my collections I am already using the custom1 and 2 fields in my collections. I have the search working when just searching individual collections as you can see from my code in the previous mail, I just need the search to return all search results when the user selects search

RE: Coldfusion and Verity Results ???

2003-01-29 Thread A.Little
Why not have the link built into the collection? So why you do the indexing from the db instead of the title being 'xxx' the title is 'a href=mylinkto.htmxxx/a'? Then when you're outputting the results when the user has selected all collections you don;t need to worry about which individual

Webservices in CFMX

2003-01-29 Thread Jason Lees (National Express)
All, I've just been doing some load testing connecting from CFMX to an Inhouse webservice application. Everything is running ok until about 300 transactions have been processed, CFMX then throws the following error Object reference not set to an instance of an object. at

RE: XML settings files for CF apps

2003-01-29 Thread webguy
cfsets. Also a .xml file is a security problem. How do you stop anybody viewing it? Put it that WEB-INF directory. WG ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Multiple Mail Attachments with CF 4.0

2003-01-29 Thread Bill Grover
I know it was a PITA! We had written a COM object that interfaced with CDONTS for use in another language. So we took advantage of this and wrote our page to do a CFOBJECT to our COM object and send the mail that way. If you have CDONTS on the server you are mailing from you can probably

RE: coldfusion and access 2002

2003-01-29 Thread Andy Ousterhout
Have you added a password to the Admin account? -Original Message- From: Benjamin Rosenthal [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 8:24 PM To: CF-Talk Subject: coldfusion and access 2002 I'm trying to secure an Access 2002 database so that it requires a username and

cf and msmq

2003-01-29 Thread Tony Weeg
just a question has anyone successfully, integrated cf/cfmx with microsofts msmq (Microsoft Message Queueing Service) to either get/receive data? thank you! ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce

CFMX for J2EE/JRun4.0 and MS Access Problems....

2003-01-29 Thread ReillyJa
We are having problems connecting CFMX for J2EE on JRun 4.0 and connecting to a MS Access 97 (and also 2000) db. (I know, but its a legacy system they are trying to port from CF5 to CFMX, and has light db usage). We are getting this error: Connection

RE: cf and msmq

2003-01-29 Thread webguy
Haven't tried it, but a) write a async web service in .NET and use it from CF http://www.123aspx.com/resdetail.aspx?res=26694 b) write a COM Some VB to post message Private Sub PostMessage() Dim QI as New MSMQQueueInfo Dim RequestQ As MSMQQueue Dim msg As New

SQL Selecting records from list

2003-01-29 Thread Thane Sherrington
I have a list of IDs and I want to create a Query that will find records based on this list. Is there an easy way to do this other than using a lot of ORs? T ~| Archives:

RE: cf and msmq

2003-01-29 Thread Mark A. Kruger - CFG
We wrote a COM and used it from CF 5 - but I'm guessing it would work less well in CFMX. Still, the COM it'self wasn't much. -Mark -Original Message- From: webguy [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 8:40 AM To: CF-Talk Subject: RE: cf and msmq Haven't tried it,

Re: SQL Selecting records from list

2003-01-29 Thread Jerry Johnson
If the list is not TOO long, you could simply: cfquery... select * from table where id in (#idList#) /cfquery (this assumes numeric ids, and a cf variable called idList) Jerry Johnson [EMAIL PROTECTED] 01/29/03 09:46AM I have a list of IDs and I want to create a Query that will find records

RE: MM Using SilkTest to QA Rich Apps?

2003-01-29 Thread Stacy Young
Thanks all, I've been speaking with vendors and it seems they really didn't have a clue what flash can do these days...During a webex I had asked that they run their product against the petstore. Generally the comment is, wow, it's amazing what u can do with flash these days... hehe Quick Test

Re: SQL Selecting records from list

2003-01-29 Thread Randell B Adkins
Select * From thisTable WHere ID IN (#myIDlist#) [EMAIL PROTECTED] 01/29/03 09:46AM I have a list of IDs and I want to create a Query that will find records based on this list. Is there an easy way to do this other than using a lot of ORs? T

RE: SQL Selecting records from list

2003-01-29 Thread Adrian Lynch
Use IN WHERE something IN ( #yaList# ) Watch for empty lists. Ade -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: 29 January 2003 14:46 To: CF-Talk Subject: SQL Selecting records from list I have a list of IDs and I want to create a Query that will find

RE: MM Using SilkTest to QA Rich Apps?

2003-01-29 Thread Stacy Young
Ya Quick Test is coordinate based as well (since flash objects aren't recognized)...I'll check out e-Test, thx! Stace -Original Message- From: Adam Churvis [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 12:30 AM To: CF-Talk Subject: Re: MM Using SilkTest to QA Rich Apps?

Re: SQL Selecting records from list

2003-01-29 Thread Thane Sherrington
At 09:57 AM 01/29/03 -0500, Randell B Adkins wrote: Select * From thisTable WHere ID IN (#myIDlist#) Thanks. I thought there was something like this. T ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

RE: Coldfusion and Verity Results ???

2003-01-29 Thread Ryan Kime
Ian, I'm not sure I follow your code example in that last email, but I see what you are trying to do. I see where you have an IF isDefined() statement based on the collection download. First off, that won't work when outputting combined collections as the results get intermingled. Also, shouldn't

Re: Coldfusion and Verity Results ???

2003-01-29 Thread Ian Vaughan
Ryan I can see what you are saying. Looking at my code then how can it be changed to accomodate this??? - Original Message - From: Ryan Kime [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 29, 2003 3:27 PM Subject: RE: Coldfusion and Verity Results ??? Ian,

SOT: Generator 2 and CFMX

2003-01-29 Thread Ben Doom
I don't suppose anyone is running Generator 2 and CFMX? If so, how did you get them running together? After installing Generator, if I call a .swt file, I get a JRun connector error. Any help is appreciated. -- Ben Doom Programmer General Lackey Moonbow Software, Inc

RE: cfDesperate

2003-01-29 Thread CWatt
No, not at all The one is taken out now on the demo site. I put that in there for testing alone. The problem is that once it is added from array 1 to array 2 (and yes, the length grows by one) then no matter what link you hit next, the exact info is duplicated and the array grows one more.

J2EE sessionDestroyed() Issues WAS: session_OnStart(), application_OnStart() in CFMX

2003-01-29 Thread Adrocknaphobia Jones
I'm reposting this in hopes of finding an answer or some more information: I have this odd feeling that CFMX doesn't invalidate j2ee sessions properly. I hope some1 from MM can add a little more light to this post. You code looks air tight, so I don't think you are doing NEthing wrong, at least

RE: Coldfusion and Verity Results ???

2003-01-29 Thread Ryan Kime
(I'm on MX so if something is different, let me know) You need to look at your collections first - go back and read the cf docs on collections too. OK, I see in your code you are using custom1 to return the URL in some cases. There's a better way by using the Return URL field, then calling #url#.

Re: coldfusion and access 2002

2003-01-29 Thread samcfug
This from the Access Help file: About passwords You can use three types of passwords in Microsoft Access. The type of password protection you choose will determine the level of user access to your database and the objects it contains. Database passwords If you use a database password, all users

Re: Cold Fusion and Telnet

2003-01-29 Thread J. Kris Baca
I've got a Java telnet client that I can use from a browser which works great (nothing to do with CF), but it's all behind our firewall. Have you looked into these? I think there's a few of them out there. Ian Skinner wrote: Unfortunately I do mean an honest to goodness Telnet session, with

cfmx applications under load

2003-01-29 Thread Ken Beard
I've heard some bad stories about cfmx under load.. does anyone have a success story of a cfmx application with big load? like really really big loads? talking possibly 100's of thousands of sessions a day. ken beard tbcfug manager tampa, fl

Chat now open--we need 100 people!

2003-01-29 Thread Michael Dinowitz
Michael Dinowitz Master of the House of Fusion http://www.houseoffusion.com - Original Message - From: Amy Brooks [EMAIL PROTECTED] We are currently testing this application and would like 100 people to log on http://www.markme.com/mesh/mmugchat/ Thanks in advance for your help!!

RE: Using MS Access Queries as SP

2003-01-29 Thread Bruce, Rodney S HQISEC/Veridian IT Services
Is everyone stumped?? -Original Message- From: Bruce,Rodney S HQISEC/Veridian IT Services [EMAIL PROTECTED] [mailto:Bruce,Rodney S HQISEC/Veridian IT Services [EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 11:45 AM To: CF-Talk Subject: Using MS Access Queries as SP Hi everybody I

RE: Chat now open--we need 100 people!

2003-01-29 Thread Adrocknaphobia Jones
I can't seem to log in, no matter what username I try. I'll give it another shot after lunch. Adam Wayne Lehman Web Systems Developer Johns Hopkins Bloomberg School of Public Health Distance Education Division -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent:

RE: Chat now open--we need 100 people!

2003-01-29 Thread Scott Brader
I don't think the instructions are very good. After playing around a little, I found that if I enter my username, click the expand button to the right of login, clear the password field, then click login I was able to get in. Scott Scott Brader Prairie Software Development LLC 101 East Sadd

export to Access through browser

2003-01-29 Thread Dimo Michailov
Please help with any suggestions, I have a client with an online form that gathers a pretty substantial amount of data - let's say 40 fields or so and the data is stored in an Access database on the hosting company's servers. My client needs to be able to download this information (just the

RE: export to Access through browser

2003-01-29 Thread Russ
I haven't done it personally, but you can create a Replica Set and ... Well, that's the right direction to look, from what I understand; it should help you sync them up. HTH, Russ -Original Message- From: Dimo Michailov [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003

Repeating region on output in DWMX?

2003-01-29 Thread Jeff Small
I have a small table in a database that I want to output. I want to output a * query so that the 30 or so items in the table are output in 3 columns. I'm trying to figure out how to do this in DreamweaverMX so that I can take the recordset that I've already created, and output it into a table with

CFMX Cert. Exam

2003-01-29 Thread Ernie Pena
Anyone know of a Brain Dump for CFMX Cert. exam? ~| 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: CFMX Cert. Exam

2003-01-29 Thread Jochem van Dieten
Ernie Pena wrote: Anyone know of a Brain Dump for CFMX Cert. exam? Beer is an excellent way to Dump your Brain for any cert exam. Jochem ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: CFMX Cert. Exam

2003-01-29 Thread Jeffry Houser
I studied by reading the CFMX book I wrote. (I'm sure there is an irony there). CF_Buster is also a good choice. ( The MX version was not available when I took the test ) At 11:50 AM 1/29/2003 -0600, you wrote: Anyone know of a Brain Dump for CFMX Cert. exam? -- Jeffry Houser |

RE: cfmx applications under load

2003-01-29 Thread CWatt
I send an email campaign that generates between 120,000 and 350,000 hits a day for about a week solid. I have never had any issues at all. Thank You, Christian Watt Webmaster SkillPath Seminars [EMAIL PROTECTED] -Original Message- From: Ken Beard [mailto:[EMAIL PROTECTED]] Sent:

Re: MM Using SilkTest to QA Rich Apps?

2003-01-29 Thread Sean A Corfield
On Wednesday, Jan 29, 2003, at 07:03 US/Pacific, Stacy Young wrote: Are MM currently working with any vendors on getting better Flash support in these tools? I don't know any details - I'm not part of the product teams - but when my group started looking at testing our RIAs, we asked the

Re: Webservices in CFMX

2003-01-29 Thread Sean A Corfield
On Wednesday, Jan 29, 2003, at 01:36 US/Pacific, Jason Lees (National Express) wrote: I've just been doing some load testing connecting from CFMX to an Inhouse webservice application. Everything is running ok until about 300 transactions have been processed, CFMX then throws the following

Re: export to Access through browser

2003-01-29 Thread Dimo Michailov
Russ, This is a good idea, I didn't even know that replication functionality existed. Now I have to figure out if they can do replication with one of the databases being on the web (FTP maybe..) or they have to download it before they can replicate. I will still apprecite if someone can give

RE: Webservices in CFMX

2003-01-29 Thread Dave Watts
I've just been doing some load testing connecting from CFMX to an Inhouse webservice application. Everything is running ok until about 300 transactions have been processed, CFMX then throws the following error How are you actually doing the load testing? Are you creating a .cfm

Screening files before CFFile upload

2003-01-29 Thread E. Keith Dodd
Am wondering whether I can check for size, appropriate extension, etc. on files before they are uploaded using CFFile. Presently, I am uploading the files (with limited use of attribute accept), then using the CFFile output structure to delete any that don't fit my criteria. I am using MX and the

Re: Repeating region on output in DWMX?

2003-01-29 Thread Matt Brown
What you are looking for is a free extension from Tom Muck called horizontal looper. I think you can find it at http://www.dwteam.com. I use it and love it. At 12:41 PM 1/29/2003 -0500, you wrote: I have a small table in a database that I want to output. I want to output a * query so that the

RE: Screening files before CFFile upload

2003-01-29 Thread Bryan F. Hogan
http://markme.com/cantrell/weblog/index.cfm?m=1d=28y=2003 Bryan F. Hogan Director of Internet Development Macromedia Certified ColdFusion MX Developer Digital Bay Media, Inc. 1-877-72DIGITAL -Original

ROUNDUP functionality from Excel

2003-01-29 Thread Jillian Carroll
Is there any way to duplicate the 'roundup' functionality from Excel? I'm using CF to do a number of calculations (basically to make a form into a calculator) and I need to round up to a number so that there are no decimal points. I can't just trim them... I need the rounding. Thanks! --

RE: ROUNDUP functionality from Excel

2003-01-29 Thread Ben Doom
ceiling() should do what you want. -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original Message- : From: Jillian Carroll [mailto:[EMAIL PROTECTED]] : Sent: Wednesday, January 29, 2003 1:35 PM : To: CF-Talk : Subject: ROUNDUP functionality from Excel : : : Is

RE: ROUNDUP functionality from Excel

2003-01-29 Thread Barney Boisvert
Ceiling() int() fix() round() those four functions do these things: round up round down truncate to integer round nearest -Original Message- From: Jillian Carroll [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 10:35 AM To: CF-Talk Subject: ROUNDUP functionality from

RE: Repeating region on output in DWMX?

2003-01-29 Thread Chris Kief
Tragically, the one on the DWTeam site is UltraDev 4 only. chris -Original Message- From: Matt Brown [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 10:28 AM To: CF-Talk Subject: Re: Repeating region on output in DWMX? What you are looking for is a free extension from Tom

RE: Screening files before CFFile upload

2003-01-29 Thread Benoit Hediard
Hi, You can also add some Javascript client side validation : http://www.massimocorner.com/beta/js_upload.htm Benoit Hediard www.benorama.com -Message d'origine- De : Bryan F. Hogan [mailto:[EMAIL PROTECTED]] Envoyé : mercredi 29 janvier 2003 19:39 À : CF-Talk Objet : RE: Screening

Re: Screening files before CFFile upload

2003-01-29 Thread E. Keith Dodd
Thanks, interesting article. That would allow examination of size. I did a cfdump of cgi, but don't see anything that would give me anything about extension of the actual file. Gives content-type of multipart/form-data etc. Tried dump of form and only gives the .tmp file. Your suggestion takes

Re: Repeating region on output in DWMX?

2003-01-29 Thread Jeff Small
on 1/29/03 1:28 PM, Matt Brown at [EMAIL PROTECTED] wrote: What you are looking for is a free extension from Tom Muck called horizontal looper. I think you can find it at http://www.dwteam.com. I use it and love it. It says on the page does not work with the new ColdFusion, PHP, or ASP.NET

Re: Screening files before CFFile upload

2003-01-29 Thread E. Keith Dodd
Just thought of that right before getting your response. Although not fool-proof, would be good for my purpose since it's on an administrative page where clients would not be turning of JS, etc. Couldn't get the link to work. Will keep trying. Thanks Keith - Original Message - From:

RE: Screening files before CFFile upload

2003-01-29 Thread Mike Townend
GetHTTPRequestData() I believe will give you more information. -Original Message- From: E. Keith Dodd [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 18:52 To: CF-Talk Subject: Re: Screening files before CFFile upload Thanks, interesting article. That would allow

[offtopic] Javascript to open a url in another frame

2003-01-29 Thread Darren Adams
Hello All, Being a little dense today can anyone refresh my memory as to how you open up a link in another frame ? Is it Parent.framename.location.href = url; Or Parent.frames[1].location.href = url; Basically I just want a link from one frame to open in another. Any ideas

RE: ROUNDUP functionality from Excel

2003-01-29 Thread Jillian Carroll
Than you both Barney and Ben... this is EXACTLY what I needed!! -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED]] Sent: January 29, 2003 12:47 PM To: CF-Talk Subject: RE: ROUNDUP functionality from Excel Ceiling() int() fix() round() those four functions

Re: [offtopic] Javascript to open a url in another frame

2003-01-29 Thread Rahmin Pavlovic
lowercase p for parent but it's better to drill down from the top: top.framename.location - Original Message - From: Darren Adams [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 29, 2003 1:40 PM Subject: [offtopic] Javascript to open a url in another frame

RE: [offtopic] Javascript to open a url in another frame

2003-01-29 Thread Jeremy Bunton
Can you not just use the target attribute of the link. a href=what.htm target=framenamesomelink/a -Original Message- From: Darren Adams [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 1:40 PM To: CF-Talk Subject: [offtopic] Javascript to open a url in another frame Hello

RE: CFMX Cert. Exam

2003-01-29 Thread Adrocknaphobia Jones
Is there an exam study guide for CFMX? The one for 5 made a great bathroom book. No offense to whomever wrote it, but it's a good one for just opening it up and reading random sections. Adam Wayne Lehman Web Systems Developer Johns Hopkins Bloomberg School of Public Health Distance Education

OT: flash z-index

2003-01-29 Thread Ben Doom
I understood that the z-index of a flash movie was infinte -- that you couldn't float anything (layer, div, etc) over the movie. Please someone tell me I'm wrong and that I'm just overlooking something! If you /can/ change the z-index, how? -- Ben Doom Programmer General Lackey

Re: Screening files before CFFile upload

2003-01-29 Thread E. Keith Dodd
Wow! That gives a lot of info. But don't see anything that helps. Don't see anything in the Headers, and the Content is a huge Binary that I wouldn't have the slightest idea of what to do with. Thanks, never used that tag before. Keith - Original Message - From: Mike Townend [EMAIL

CLOB and Incorrect Characters

2003-01-29 Thread Kazmierczak, Kevin
Hello, We are having trouble with some Memo fields in Access after we upgraded to cfmx. First we enabled CLOB in order to get them to show up, but now our problem is that some characters are getting replaced by a little box character, mainly the characters ', -, . Has this happened to

Re: flash z-index

2003-01-29 Thread Jeff Garza
Set the wmode pararmeter to Transparent and you should be fine... param name=wmode value=transparent We had this issue with a locator application that was giving our JS menuing system fits... HTH, Jeff Garza - Original Message - From: Ben Doom [EMAIL PROTECTED] To: CF-Talk [EMAIL

RE: flash z-index

2003-01-29 Thread Mike Townend
On IE only (5+ I think) theres a param name=wmode value=transparent param name=scale value=exactfit And wmode=transparent scale=exactfit Which can be used to attempt it HTH -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 19:16 To:

RE: CLOB and Incorrect Characters

2003-01-29 Thread Tangorre, Michael
hey kaz, you can't email your friends anymore. LOL -Original Message- From: Kazmierczak, Kevin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 2:21 PM To: CF-Talk Subject: CLOB and Incorrect Characters Hello, We are having trouble with some Memo fields in Access

RE: CSV loop

2003-01-29 Thread Rafael Alan Bleiweiss
At 02:25 PM 1/28/03 -0600, you wrote: Turn on display query in Admin Debug. Check to see the result of the WHERE clause. Most likely, it is not turning out the way you think. I turned on Display Query and guess what - BLANK PAGE - for some reason, it appears the query isn't even running! The

SQL Query - Can you do this

2003-01-29 Thread Matthew Friedman
I have a question and I am not sure if you can do this. I need to do a query join information from two separate tables in different database. Both databases are on the same SQL server and registered in CF. what I am trying to do is the follows CFQUERY NAME=placed_jobs DATASOURCE=placments

RE: [offtopic] Javascript to open a url in another frame

2003-01-29 Thread Darren Adams
Afraid not, I have a cf script writing an xtree tree and it is the action property of those tree items I am trying to use to open the url in the other frame. I am calling a javascript function to do this. I keep getting errors =( -Daz -Original Message- From: Jeremy Bunton

CFMX Study guide

2003-01-29 Thread Ernie Pena
Hey Ben, When is this going to hit the market? Amazon says it was releasted on January 17th but no details as to when its actualy going to ship. Thanks in advance. Ernie Pena M. D. Anderson Cancer Center. ~| Archives:

RE: SQL Query - Can you do this

2003-01-29 Thread Tim Do
use dbname..tablename -Original Message- From: Matthew Friedman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 11:55 AM To: CF-Talk Subject: SQL Query - Can you do this I have a question and I am not sure if you can do this. I need to do a query join information from two

RE: SQL Query - Can you do this

2003-01-29 Thread Barney Boisvert
Sure, just prepend the database name before the table name, so you'll have this: select ... from placements where ... (select ... from users.USERS ...) -Original Message- From: Matthew Friedman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 11:55 AM To: CF-Talk

RE: CSV loop

2003-01-29 Thread Raymond Camden
You did remember to check (in the cf admin) to see if debug output is being restricted to an IP? I believe out of the box debugging is restricted to 127.0.0.1. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc Email

RE: flash z-index

2003-01-29 Thread Ben Doom
So, essentially, in IE 5+ you can specify that the flash is always on the bottom? Hmm. What the client wants is to be able to pop an iframe in front of the flash movie but then get rid of it later. I'm thinking this isn't going to happen. :-) -- Ben Doom Programmer General Lackey

SOT:Flash Study Guide

2003-01-29 Thread Frank Mamone
Is there such a thing as a Flash MX Developer/Designer Study Guide(s)? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: Screening files before CFFile upload

2003-01-29 Thread Dave Lyons
I don't think Massimo's actually stops the upload just says that the file is too big - Original Message - From: Mike Townend [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 29, 2003 1:56 PM Subject: RE: Screening files before CFFile upload GetHTTPRequestData()

Re: Repeating region on output in DWMX?

2003-01-29 Thread Dave Lyons
check this out, I haven't tried it but its here http://www.dwfaq.com/Snippets/snippet_details.asp?CatID=13SnipID=276 - Original Message - From: Jeff Small [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 29, 2003 1:46 PM Subject: Re: Repeating region on output in

XML settings files for CF apps

2003-01-29 Thread greg gorman
While I agree that XML is a fine thing in certain situations, I really don't see the advantage in the way that article and some of the other posters have suggested. I use an application.cfm file that has cases (db changes, path adjustments, etc) based on whatever server it resides on (fortunate

Re: SOT:Flash Study Guide

2003-01-29 Thread Ernie Pena
yes! http://www.amazon.com/exec/obidos/tg/detail/-/0321157303/qid=1043870287/sr=8 -1/ref=sr_8_1/103-7363607-0626259?v=glances=booksn=507846 - Original Message - From: Frank Mamone [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 29, 2003 1:53 PM Subject:

RE: Flash Study Guide

2003-01-29 Thread Debbie Dickerson
Certified Macromedia Flash MX Developer Study Guide http://www.amazon.com/exec/obidos/tg/detail/-/0321157303/qid=1043870263/sr=1-2/ref=sr_1_2/002-5639786-7656058?v=glances=books Certified Macromedia Flash MX Designer Study Guide

Re: CF 5 and Unicode

2003-01-29 Thread Pete Ruckelshaus
While I would like to believe Jim Campbell's statement, my experience has shown otherwise. Pete - Original Message - From: Jim Campbell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, January 28, 2003 4:56 PM Subject: Re: CF 5 and Unicode CF5 shouldn't have any hand in

RE: CSV loop

2003-01-29 Thread Rafael Alan Bleiweiss
Yeah - the query info shows up on all my other pages, just not on this one so the query isn't running! At 01:50 PM 1/29/03 -0600, you wrote: You did remember to check (in the cf admin) to see if debug output is being restricted to an IP? I believe out of the box debugging is restricted to

SQL Query - Can you do this

2003-01-29 Thread mfriedman
dbname..tablename is the dbname the SQL dbname or the name regested in CF admin matt ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Size of string in Bytes

2003-01-29 Thread Sean Daniels
Anyone know of an easy way to get the size of a string in bytes? TIA ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4

OT: JS form validation script

2003-01-29 Thread Cutter (CF_Talk)
Anybody up to attempting to help me debug a JS form validation script I'm working on? Cutter ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: [offtopic] Javascript to open a url in another frame

2003-01-29 Thread Joshua Miller
parent.[name].document.location.href=page.cfm; That works for me. Joshua Miller Head Programmer / IT Manager Garrison Enterprises Inc. www.garrisonenterprises.net [EMAIL PROTECTED] (704) 569-9044 ext. 254 *

RE: JS form validation script

2003-01-29 Thread Joshua Miller
Sure, whatcha got? I've written a whole slew of validators in JavaScript and can probably help out. Joshua Miller Head Programmer / IT Manager Garrison Enterprises Inc. www.garrisonenterprises.net [EMAIL PROTECTED] (704) 569-9044 ext. 254

Struct Sort

2003-01-29 Thread Brad Roberts
I've got a structure that holds several questions: temp = structNew(); temp.A = a quesiton; temp.B = another question; temp.C = yet another question; ... and so on I'm outputing the questions like so: cfloop collection=#temp# item=q #temp[q]#: input type=checkbox name=#q#

Re: JS form validation script

2003-01-29 Thread Cutter (CF_Talk)
The script is to loop through the fieldnames array to validate each field specified. Each Item of the fieldnames array is an array: Fieldname, FieldType, ErrorMessage, ValidateForBadCharacters, ValidateAnEmailAddress I started by just checking for isEmpty, which is working fine. Then I began

ColdFusion statistical analysis

2003-01-29 Thread Hagan, Ryan
Greetings, I was wondering if anyone knew of any statistical analysis tools written in ColdFusion OR COM objects. Specifically I'm looking to do linear regression. I'd rather not reinvent the wheel if possible. Thanks for the input! Ryan Hagan [EMAIL PROTECTED]

RE: CSV loop

2003-01-29 Thread Raymond Camden
Do you have this: cfsetting showdebugoutput=No on your page, or in your Application.cfm file? Do you see _other_ debug info on the page? === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc Email: [EMAIL PROTECTED]

RE: Struct Sort

2003-01-29 Thread Raymond Camden
If you want to ensure proper ordering, switch to an array. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc Email: [EMAIL PROTECTED] WWW : www.camdenfamily.com/morpheus Yahoo IM : morpheus My ally is the

RE: CSV loop

2003-01-29 Thread Rafael Alan Bleiweiss
At 02:17 PM 1/29/03 -0600, you wrote: Do you have this: cfsetting showdebugoutput=No on your page, or in your Application.cfm file? Do you see _other_ debug info on the page? This is not set, however no other debug info appears - interestingly enough, when I put a CFOUTPUT with one of the

Page Expired with CFMX

2003-01-29 Thread Frank Mamone
Is there a fix for the page expired message we get when hitting the back button with MX. Setting the cache is not an option as it won't re-run the queries. Thanks, Frank Mamone ~| Archives:

CFMX application context

2003-01-29 Thread ksuh
Has anyone tried creating different contexts with CFMX? It looks like there's only one context in CFMX - wwwroot. Is it possible to add more? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: Page Expired with CFMX

2003-01-29 Thread E. Keith Dodd
Frank I had similar problem and had to put the following in any page with a form: cfheader name=Cache-control value=public see thread on past topic: http://www.mail-archive.com/cf-talk@houseoffusion.com/msg125513.html Not sure what that will do with queries. E. Keith Dodd Wings of Eagles

dumb question client variables

2003-01-29 Thread Tony Weeg
hi there. If I wanted to remove the value of a client variable I have set for a particular user, lets just say, emailAddress, and they check a checkbox that says, Forget my email address, would the best way to do that, be to have this code... cfset client.EmailAddress = to just zero the value

Re: Page Expired with CFMX

2003-01-29 Thread Frank Mamone
Does it need to be on every page or will it work in the application.cfm? Thanks Keith. - Original Message - From: E. Keith Dodd [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 29, 2003 3:32 PM Subject: Re: Page Expired with CFMX Frank I had similar problem

2 Selects somewhat related

2003-01-29 Thread Randell B Adkins
Has anyone seen a JS function or CustomTag that will allow a total of 3 selectboxes to be dynamically populated based on: HERE IS THE KICKER: the first selection box (upon selection) would populate the 2nd and 3rd at the SAME time with related values. Box 2 and Box 3 are not related but are

Cfpop problem

2003-01-29 Thread Al Musella, DPM
A script that has been working great for years under cf3, then cf4 then cf5 now MX started throwing the error: ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Uploading File, Retaining File Name, Resizing?

2003-01-29 Thread Russ
I've got a lot at once, and I'm really sort of blindly stabbing at at least one part of this. I'm allowing my client to upload an image to his site--through a file upload pop-up (which doesn't have to be done that way, it's just the way I'm doing it currently). Ideally, rather than having him

  1   2   3   >