RE: Question about processing a CSV file.

2004-09-14 Thread Pascal Peters
If the file is in a web accessible folder, you can use cfhttp to read it into a query. Then loop over the query to update the database. cfhttp url="" name=qCSV columns=header_id,track_nbr textqualifier= delimiter=, resolveurl=no throwonerror=yes timeout=20 charset=iso-8859-1/cfhttp cfloop

RE: Incorporating Javascript to confirm into a document...

2004-09-14 Thread Pascal Peters
A JS variable is not passed when you post the form. You can use a hidden form field. But easier is to just do the whole thing in JS and don't post if the user clicks cancel: function delete_presentation() { return confirm(Do you really want to delete this presentation??); } Pascal

Re: Download link broken on Macromedia.com

2004-09-14 Thread Cutter
I had a similar problem with downloads from the MM site. Turned out my firewall was blocking downloads of types not specified, and for some reason the original packet info sent from the MM site doesn't appear as an exe but as something else. Cutter Sean Corfield wrote: On Tue, 14 Sep 2004

Re: parsing MIBs with Coldfusion

2004-09-14 Thread Cutter
MIB file? Men In Black? Sorry, couldn't resist...;) Cutter Steve Dworman wrote: All Is there a custom tag that parses industry standard MIB files?I need to be able to load a MIB file and have CF parse the file so I can present the variables and descriptions to the user. Any help is

ot: java popup window

2004-09-14 Thread dave
i friggin lost my code for a popup window off of a dynamic pix that auto sizes to the photo size anyone have any code handy to do that? tia [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Flash

2004-09-14 Thread dave
www.flashmx2004.com -- Original Message -- From: Troy Simpson [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Mon, 13 Sep 2004 09:23:46 -0400 I am now developing a flash client.Anyone know of a good list to post Flash questions? Thanks, -- Troy

Re: Splitting a Query

2004-09-14 Thread Michael Traher
Hi Ricardo, An alternative might be SELECT crmFields.groupof, crmFields.id FROM crmFields JOIN crm ON (crmFields.id = crm.fieldid) WHERE crmFields.position = 99 AND crm.clientid = 1248 AND crm.value != It might also be worth looking at what indexes are in place on the columns that are in your

Re: Update a field

2004-09-14 Thread Michael Traher
You may have to provide a bit more detail before we can help. What interface are you using to execute this code?Since this is CF-TALK I assume there is some CF code involved?Can you supply this code then someone may be able to spot the problem for you. - Original Message - From: Daniel

Re: Printing Multiple Files All dynamically created or linked through Cold Fusion - Now desperate

2004-09-14 Thread C. Hatton Humphrey
Have you thought about having the system create a ZIP on a scheduled basis (use a scheduled task that runs every night and creates an updated ZIP file), then provide the user with a static link to the archive. That would not provide the required printing however it would get the documents to the

Currently running page requests

2004-09-14 Thread James Smith
There are a couple of automated tasks on our server here that run periodically but take between 10-30 minutes to execute while they look up several hundred other web pages from other servers.Is there any way to get a list of currently running page requests on the server so I can keep track or

OT: Gmail isnt the be-all and end-all for flashcoders

2004-09-14 Thread Mike Kear
I've found out that you can't post to flashcoders from gmail apparently, because gmail doesnt offer any way to send text-only mail. Since flashcoders apparently rejects html email, and gmail only sends html email, you can't post to flashcoders if you use gmail. that's a lesson to learn if it's

Re: (crosspost) CFMBB - open source message board

2004-09-14 Thread Greg Luce
I see a big CF error dump at http://www.cfmbb.org/ On Mon, 13 Sep 2004 14:23:34 -0400, Rick Root [EMAIL PROTECTED] wrote: Well, I'm not ready to release the source code for the first version yet, but I *AM* ready to share what I've done so far for public viewing and comment. so if you'd

CFHTTP

2004-09-14 Thread Luc Deault
I'm trying to get data (title of page) from a url which is passed with _javascript_. The set (gotolink) seems to work, but cfhttp doesn't seem to connect. The gotoLink output works also. What's wrong with my code? cfset goToLink = 'scriptdocument.write(window.opener.form.link_e.value);/script'

Re: Printing Multiple Files All dynamically created or linked through Cold Fusion - Now desperate

2004-09-14 Thread millerj
Already have it as that is one of the functions as well. It's not the distribution of the documents as much as it is making it easy to print. There can be between 1 and 50+ products that have a 3 page questionare associated with them. On top of that - I can have up to 10 documents - images,

Re: CFHTTP

2004-09-14 Thread Andrew Dixon
That is never going to work as _javascript_ is client-side and CF is server-side. The CF script runs when the user requests the page. You will have to do something like get the _javascript_ to call a script on the server and pass the url entered as a query string on the script call URL, or do it

Re: CFHTTP

2004-09-14 Thread Luc Deault
Don't want to be a pest but why is my first cfoutput actually outputting the right string? ___ [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: CFHTTP

2004-09-14 Thread Andrew Dixon
Because when you output it the browser see the script tags and processes and the document.write writes the output to the browser. This however is done client-side and not server side. All the CF server is the script... part and output it to the browser. If you view the source in the browser you

Re: Currently running page requests

2004-09-14 Thread G
This is a fairly rudimentary idea but you could have each process log its beginning and its termination. A quick check of the log (maybe a DB table) would tell you what is currently running. - Original Message - From: James Smith To: CF-Talk Sent: Tuesday, September 14, 2004 6:59 AM

RE: Currently running page requests

2004-09-14 Thread Tim Blair
Is there any way to get a list of currently running page requests on the server so I can keep track or them? You can perform a dump of the current stack trace, which will list (amongst a big pile of other stuff) what's requests are currently being processed by CF.See the MM technote about it:

RE: Form Filling w/ activePDF Toolkit

2004-09-14 Thread Yexley Robert D Contr AFRL/PROE
Well, Internet Explorer just refuses to cooperate (it seems to work OK for me in Firefox), and I was unable to make any changes that would work, so this should do the trick for you guys. Sorry about the errors. http://yexley.net/bob/code/cdrlreport.zip http://yexley.net/bob/code/cdrlreport.zip

RE: Currently running page requests

2004-09-14 Thread Robertson-Ravo, Neil (RX)
And its nigh on useless in my opinion. _ From: Tim Blair [mailto:[EMAIL PROTECTED] Sent: 14 September 2004 14:23 To: CF-Talk Subject: RE: Currently running page requests Is there any way to get a list of currently running page requests on the server so I can keep track or them? You

Re: Currently running page requests

2004-09-14 Thread Adrocknaphobia
Well I've found the stack trace invaluable in terms of information. But the fact that you have to have your server running through command prompt makes its pretty useless. For example in a production app, you have to shut down the server. (not cool) Then restart it in a command window (not cool),

OT- NEWS - cfcertification.com

2004-09-14 Thread Asim Manzur
Did anyone recently visit http://www.cfcertification.com/ [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: OT- NEWS - cfcertification.com

2004-09-14 Thread Howie Hamlin
Don't go to this site - it has adult content and has nothing to do with CF. - Original Message - From: Asim Manzur To: CF-Talk Sent: Tuesday, September 14, 2004 9:59 AM Subject: OT- NEWS - cfcertification.com Did anyone recently visit http://www.cfcertification.com/ [Todays Threads]

RE: OT- NEWS - cfcertification.com

2004-09-14 Thread Tangorre, Michael
From: Asim Manzur Did anyone recently visit http://www.cfcertification.com/ What the hell is wrong with you? You could at the VERY MINIMUM, let people know the link was not work safe. Why would you post that crap here? Some people. -MT [Todays Threads] [This Message] [Subscription]

Re: OT: Gmail isnt the be-all and end-all for flashcoders

2004-09-14 Thread Michael Dinowitz
HTML mail IS banned on all HoF lists. That is to say, mail that ONLY has an HTML part is banned. Mail that has both an HTML part and a plain text part is processed properly. I've posted from GMail a number of times with no problem. I'd ask the Flashcoders listmanager for information on how they

Re: OT- NEWS - cfcertification.com

2004-09-14 Thread Rey Bango
Asim, How about forewarning us next time instead of letting us click on a link to an adult site. Great job! Or perhaps this is your site and you're just a spammer. geez. Get some common sense. Rey... - Original Message - From: Asim Manzur [EMAIL PROTECTED] To: CF-Talk [EMAIL

RE: [Spam?] Re: CFHTTP

2004-09-14 Thread Pascal Peters
It isn't. It is outputting a script tag that is writing the correct url. There is a big difference. If you look in the source code, the url isn't there. -Original Message- From: Luc Deault [mailto:[EMAIL PROTECTED] Sent: 14 September 2004 15:02 To: CF-Talk Subject: [Spam?] Re: CFHTTP

Variable names stored in database

2004-09-14 Thread Shawn McKee
I would like to store style sheet information in a database but need to be able to change some of the parameters on the fly.If a straight file doing the variable substitutions is no big deal. cfquery name=specs datasource=#dsn# SELECT color FROM spec_table WHERE customer = 42 /cfquery cfset

seperating CF and IIS

2004-09-14 Thread Michael Hodgdon
Hey there, we are running ColdFusion and IIS on the same windows server.I always thought that this was the recommended way, however, while thumbing through the CFMX developers study guide is mentions on page 386 to seperate these servers.Anyone have any insight to the best way of managing

RE: Gmail isnt the be-all and end-all for flashcoders

2004-09-14 Thread Dave Watts
I've found out that you can't post to flashcoders from gmail apparently, because gmail doesnt offer any way to send text-only mail. Since flashcoders apparently rejects html email, and gmail only sends html email, you can't post to flashcoders if you use gmail. that's a lesson to

Re: OT- NEWS - cfcertification.com

2004-09-14 Thread Asim Manzur
Don't get mad guys, I use to goto that site, it had some certification preperation that time for cfmx, I just checked that today and found that. I was thinking that might be someone knows about it that what happened, it has been hacked or what. my intension was not going there to see the adult

RE: seperating CF and IIS

2004-09-14 Thread Dave Watts
Hey there, we are running ColdFusion and IIS on the same windows server.I always thought that this was the recommended way, however, while thumbing through the CFMX developers study guide is mentions on page 386 to seperate these servers.Anyone have any insight to the best way of

Re: HTTPS post

2004-09-14 Thread Mickael
Thanks Lee, That worked great! - Original Message - From: Lee Howard To: CF-Talk Sent: Monday, September 13, 2004 8:57 PM Subject: Re: HTTPS post How about using a com object.Something like this in VB. Dim objXMLHTTP, xml, response Set xml = CreateObject(MSXML2.XMLHTTP) ' Notice

RE: OT- NEWS - cfcertification.com

2004-09-14 Thread Dave Watts
Did anyone recently visit http://www.cfcertification.com/ Wow. The certification process has changed a lot since my last test, let me tell you. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ phone: 202-797-5496 fax: 202-797-5444 [Todays Threads] [This Message]

Re: Download link broken on Macromedia.com

2004-09-14 Thread Sean Corfield
On Tue, 14 Sep 2004 04:30:46 -0400, Cutter [EMAIL PROTECTED] wrote: I had a similar problem with downloads from the MM site. Turned out my firewall was blocking downloads of types not specified, and for some reason the original packet info sent from the MM site doesn't appear as an exe but as

Re: seperating CF and IIS

2004-09-14 Thread Michael Hodgdon
Hey Dave, that is how I understood it.Unless I read wrong, the developers guide recommeded distributed mode.I was wondering what others were doing. Thanks Dave. Michael [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: OT- NEWS - cfcertification.com

2004-09-14 Thread guy . mcdowell
RE: OT- NEWS - cfcertification.com Don't visit this site - it has very little to do with ColdFusion. READ: Pr0n Guy McDowell Web Developer [EMAIL PROTECTED] - Magma Communications Ltd. t: 613.228.3565 x6348 f: 613.228.8313 http://websites.magma.ca This e-mail message is confidential, may be

Re: OT- NEWS - cfcertification.com

2004-09-14 Thread Thomas Chiverton
On Tuesday 14 Sep 2004 15:27 pm, Asim Manzur wrote: www.cfcertification.com/ http://web.archive.org/web/*/http://www.cfcertification.com/ -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey Hole

RE: OT- NEWS - cfcertification.com

2004-09-14 Thread Micha Schopman
What pron? .. It has articles about CFMX and components. I don't know what site you are visiting right now? Maybe some cache browser history? Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo

Regular Expressions: Extract code between BODY tags

2004-09-14 Thread Mosh Teitelbaum
All: I have a complete HTML file, beginning with doctype declaration and ending with a closing HTML tag, from which I'd like to programmatically strip away everything but the code between (and not including) the BODY tags.That is, only the code (including tags) between the BODY tags should

RE: OT- NEWS - cfcertification.com

2004-09-14 Thread Ray Champagne
That is some of the worst Photoshopping I have ever seen... Ray At 10:40 AM 9/14/2004, you wrote: RE: OT- NEWS - cfcertification.com Don't visit this site - it has very little to do with ColdFusion. READ: Pr0n Guy McDowell Web Developer [EMAIL PROTECTED] - Magma Communications Ltd. t:

Re: Gmail isnt the be-all and end-all for flashcoders

2004-09-14 Thread Mark Drew
Want one? Got too many :D On Tue, 14 Sep 2004 10:29:40 -0400, Dave Watts [EMAIL PROTECTED] wrote: I've found out that you can't post to flashcoders from gmail apparently, because gmail doesnt offer any way to send text-only mail. Since flashcoders apparently rejects html email, and

RE: Regular Expressions: Extract code between BODY tags

2004-09-14 Thread Michael Dinowitz
rereplacenocase(string, 'body[^]*(.+)/body', \1) Your looking for the body tag with anything in it, then everything after that body tag that does not include the ending body tag. Using REReplace is the most efficient here as your peeling off what you don't want (i.e. whats not body content) _

Re: OT- NEWS - cfcertification.com

2004-09-14 Thread Asim Manzur
thanks thomas. now guys visit this link http://web.archive.org/web/*/http://www.cfcertification.com/ doesn't have any p0rn there, and it shows that this site had a coldfusion certificate practice test. On Tuesday 14 Sep 2004 15:27 pm, Asim Manzur wrote: www.cfcertification.com/

RE: Oracle Stored Procedures

2004-09-14 Thread Scott Mulholland
Thanks Adam.The change has been made but I'm still getting the same error. Here is the new specification: PROCEDURE TESTPCKG Argument NameTypeIN/OUT Default? CURRETURNSETREF CURSORIN/OUT The code I'm using to call

Re: Oracle Stored Procedures

2004-09-14 Thread Adrocknaphobia
Hrmm... what user is defined in your datasource settings? Are you logging in as the schema owner? -Adam - Original Message - From: Scott Mulholland [EMAIL PROTECTED] Date: Tue, 14 Sep 2004 10:57:27 -0400 Subject: RE: Oracle Stored Procedures To: CF-Talk [EMAIL PROTECTED] Thanks Adam.The

Re: Incorporating Javascript to confirm into a document...

2004-09-14 Thread Brett Barnhart
Pascal, What does the button look like with this example? I finally got to this to work by calling an external file if the user pressed 'OK', but this is really ugly and really not an exceptable approach. What you suggest is exactly what I want to happen. If they hit cancel, then nothing happens

Re: OT- NEWS - cfcertification.com

2004-09-14 Thread Donna French
LMAO i want to go to the site just to see for myself but scared if i do my computer will lock up and all i'll be able to do if my boss walks in is LOL ;-) donna - Original Message - From: Asim Manzur [EMAIL PROTECTED] Date: Tue, 14 Sep 2004 10:57:52 -0400 Subject: Re: OT- NEWS -

RE: Oracle Stored Procedures

2004-09-14 Thread Scott Mulholland
I am told the login I was given has full access/permissions. -Original Message- From: Adrocknaphobia [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 14, 2004 10:02 AM To: CF-Talk Subject: Re: Oracle Stored Procedures Hrmm... what user is defined in your datasource settings? Are you

RE: Regular Expressions: Extract code between BODY tags

2004-09-14 Thread Mosh Teitelbaum
You, sir, are a saint.Thank you. Here's the code I ended up using: REReplaceNoCase(contents, '.+body[^]*(.+)/body.+', \1) As it was, it removed the BODY tags but not the contents before and after them. Again, thanks. -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651

RE: Regular Expressions: Extract code between BODY tags

2004-09-14 Thread Michael Dinowitz
The additions are correct. I was a bit hasty in my posting. _ From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 14, 2004 11:20 AM To: CF-Talk Subject: RE: Regular Expressions: Extract code between BODY tags You, sir, are a saint.Thank you. Here's the code I ended

Re: Oracle Stored Procedures

2004-09-14 Thread Adrocknaphobia
Ask them for the schema owner just to test. If I had a dime for every dba that told me I had all the privs I needed well... lets just say the CEO of Coinstar and I would be on a first name basis. I'm going to try some things here to see if I can recreate this problem. -Adam - Original

RE: Regular Expressions: Extract code between BODY tags

2004-09-14 Thread Pascal Peters
Actually this should be rereplacenocase(string, '.*body[^]*(.+)/body.*', \1) Pascal -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: 14 September 2004 16:54 To: CF-Talk Subject: [Spam?] RE: Regular Expressions: Extract code between BODY tags

RE: Incorporating Javascript to confirm into a document...

2004-09-14 Thread Pascal Peters
INPUT TYPE=image NAME=delete SRC=""> ALT=Delete Presentation confirm(Do you really want to delete this presentation??); Pascal -Original Message- From: Brett Barnhart [mailto:[EMAIL PROTECTED] Sent: 14 September 2004 17:07 To: CF-Talk Subject: Re: Incorporating _javascript_ to

RE: Regular Expressions: Extract code between BODY tags

2004-09-14 Thread Mosh Teitelbaum
Cool.Again, thanks. -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ Michael Dinowitz wrote: The additions are correct. I was a bit hasty in my posting. [Todays Threads] [This Message] [Subscription] [Fast

Re: Incorporating Javascript to confirm into a document...

2004-09-14 Thread Ray Champagne
But you're still going to need to do something if they hit 'OK', right?Which would require you to 'call an external file'. You should really incorporate both the _javascript_ confirm and the handler for when they click 'OK'.Take a look at the page below (view source) to see what I am talking

Re: OT- NEWS - cfcertification.com

2004-09-14 Thread Rey Bango
I'm sure that you did not have any bad intention Asim but please, try to be a little more descriptive next time. Many people have strict work policies re: adult sites. Most people will trust that links placed here will lead to a professional site and by not being clear on what you're posting, it

Quotes in XML Output

2004-09-14 Thread Mark Leder
Hi all, I'm pulling data from a db and writing to an XML file.The data from the description field sometimes has quotes () surrounding the text.Im generating the XML, I've tried to use #Replace(qCal.description,, ,ALL)# to remove the quotes, but an error gets thrown.How do I solve? cfquery

SuSE Linux Enterprise Server 9 anyone?

2004-09-14 Thread Lawrence Ng
hello all, Are/Have any of you installed SuSE Linux Enterprise Server 9 which was just released last month and see how it is with MX? We are still deciding if we want to install version 9 or current version 8. The key is the verity search tool for files which currently does not work under our

RE: Regular Expressions: Extract code between BODY tags

2004-09-14 Thread Michael Dinowitz
Either the .* or the .+ will work as the original poster said that the body tags would be within a validly formatted HTML document. This brings up a question of the relative merits of the * and + modifiers when doing large matches. I'll have to look in Mastering RegEx if there's any known speed or

RE: Quotes in XML Output

2004-09-14 Thread Pascal Peters
XMLFormat()? -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: 14 September 2004 17:32 To: CF-Talk Subject: Quotes in XML Output Hi all, I'm pulling data from a db and writing to an XML file.The data from the description field sometimes has quotes ()

Re: OT- NEWS - cfcertification.com

2004-09-14 Thread Asim Manzur
I agreed, Will be careful next time. TYVM I'm sure that you did not have any bad intention Asim but please, try to be a little more descriptive next time. Many people have strict work policies re: adult sites. Most people will trust that links placed here will lead to a professional site and by

Re: Appointments scheduling system

2004-09-14 Thread Michael Traher
A basic appointments system can be found on the CF exchange on MM site - this would give you a good foundation - just search for appointment. - Original Message - From: Chris Kavanagh [EMAIL PROTECTED] Date: Mon, 13 Sep 2004 02:43:52 +0100 Subject: Appointments scheduling system To:

Re: OT- NEWS - cfcertification.com

2004-09-14 Thread Jochem van Dieten
Micha Schopman wrote: What pron? Overprised porn :) It has articles about CFMX and components. I don't know what site you are visiting right now? Maybe some cache browser history? Since dig and telnet don't cache I think it is more likely you are the one having caching issues. Jochem

Null null error ARGHHH!

2004-09-14 Thread Dave Phillips
Hi folks, I'm running CF MX 6.1 (with updater 3 installed) and every now and then, my users are getting the following error: null null brThe error occurred on line 64. The line number can be different.The file can be different.It's not consistent.In this case, the line number was the

RE: Regular Expressions: Extract code between BODY tags

2004-09-14 Thread Pascal Peters
I posted this before the answer from Mosh, but our mail is going out very slowly lately. It was a correction on your post (.* OR .+ was missing before and after your regexp), not on Mosh's second post (that I didn't have at that time). .+ or .* will of course both work and I also doubt there is

Re: Currently running page requests

2004-09-14 Thread Douglas Knudsen
there was some JSP code for this floating around abit ago.IIRC, credit goes to Pete Frietag.I never got this to work for me though. Some sort of caste error and I'm far from a Java guru.Anyone get this to work? % Thread thread = Thread.currentThread(); ThreadGroup threadGroup =

RE: Quotes in XML Output

2004-09-14 Thread Mark Leder
That's it! Thanks, Mark From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 14, 2004 11:34 AM To: CF-Talk Subject: RE: Quotes in XML Output XMLFormat()? -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: 14 September 2004 17:32 To: CF-Talk

ColdFusion form validation Mac Safari

2004-09-14 Thread amanda l
using the innate form validation in cfmx (using a regular _expression_ with the pattern of (^[_a-zA-Z0-9-]+(\.[_a-zA-Z0-9-]+)[EMAIL PROTECTED](\.[a-zA-Z0-9-]+)*\.(([a-zA-Z]{2,3})|(aero|coop|info|museum|name))$)|(^ *$)) seems to be broken in Mac Safari? It will catch the incorrectly formatted

RE: Oracle Stored Procedures

2004-09-14 Thread Janet Schmitt
It might be something to do with the way the refcursor is defined in the package.Would they be willing to change the package so the refcursor is defined like this? CREATE OR REPLACE PACKAGE schemaname.testpckg IS TYPE curreturnset_type_ref_cursor IS REF CURSOR; PROCEDURE testpckg( curreturnset

RE: Null null error ARGHHH!

2004-09-14 Thread Mark W. Breneman
Same here, I get the Null Null error randomly on one of the 40 small sites we host on one sever. From what I can tell it *maybe* related to a bad session var.A user will get the error on the first page and what ever page they try to go to whey will still get the error. I have only experienced the

Re: Incorporating Javascript to confirm into a document...

2004-09-14 Thread Brett Barnhart
Right, and that is the approach that I got to work. But, I really don't want to have to call an external file. Right now, it reloads the current page when a button is pressed and tests to see which button is pressed. I just need a way to block the reload if they didn't mean to press the button.

RE: Oracle Stored Procedures

2004-09-14 Thread Janet Schmitt
Scott - The other thing you might want to look at is what Oracle drivers are being used.I know there are issues with some of the drivers and Oracle stored procedures. Here isa technote regarding one Oracle driver that mentions support for Oracle refcursors:

Re: Incorporating Javascript to confirm into a document...

2004-09-14 Thread Brett Barnhart
If you are interested, I'd be happy to send you the code. I am adding to something that someone else wrote, so I am not 100% sure how it all works. But you're still going to need to do something if they hit 'OK', right?Which would require you to 'call an external file'. You should really

RE: Null null error ARGHHH!

2004-09-14 Thread Dave Phillips
FYI - I'm only using session vars, not client vars.Below is a partial dump of the session var for when one of these errors occurred: cfid 349252 cftoken 68847985 contactid 0 firstname [empty string] sessionid PLP_349252_68847985 sitename [empty string] sitevisitedid 0

SOT: How to apply a style sheet to a file upload bottom.

2004-09-14 Thread Ciliotta, Mario
Hi, I am in the process of creatinga page for my endusers to upload files and the first thing that they complained about is that the button is not the same style as the rest of the buttons in the applications.All of the buttons are usually a form of blue (We use IE6.0 only - internal), but the

Re: Incorporating Javascript to confirm into a document...

2004-09-14 Thread Ray Champagne
Okay.So your form handler page is the same as your regular page, just two different routes taken if they really want to press the button.Potato, Potaato. The real question is, did this finally work for you? Ray At 12:20 PM 9/14/2004, you wrote: Right, and that is the approach that I got to

Re: SOT: How to apply a style sheet to a file upload bottom.

2004-09-14 Thread Asim Manzur
html head titleUntitled/title style .buttoncolor { color:#FF; background: #557799; FONT-FAMILY: Arial, sans-serif; FONT-SIZE: 8pt; font-weight: bold;} /style /head body form name=MyForm method=post action="" enctype=multipart/form-data It also needs to have a file selection control:

Re: SOT: How to apply a style sheet to a file upload bottom.

2004-09-14 Thread Mark Drew
input type=file name=bla class=buttoncolour / On Tue, 14 Sep 2004 12:28:10 -0400, Ciliotta, Mario [EMAIL PROTECTED] wrote: Hi, I am in the process of creatinga page for my endusers to upload files and the first thing that they complained about is that the button is not the same style as the

Re: Incorporating Javascript to confirm into a document...

2004-09-14 Thread Brett Barnhart
INPUT TYPE=image NAME=delete SRC=""> ALT=Delete Presentation confirm(Do you really want to delete this presentation??); Pascal Thanks! That did it... FYI for archival purposes, I had to change the link to INPUT TYPE=image NAME=delete SRC="" ALT=Delete Presentation The double in onClick

RE: SOT: How to apply a style sheet to a file upload bottom.

2004-09-14 Thread Shawn McKee
All that does is turn the background of the field a color.CSS limitation, this can't be done currently. -Original Message- From: Asim Manzur [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 14, 2004 11:33 AM To: CF-Talk Subject: Re: SOT: How to apply a style sheet to a file upload

Re: SOT: How to apply a style sheet to a file upload bottom.

2004-09-14 Thread Asim Manzur
I would recommend that you use your own graphics for the buttons. I usually use my own graphics button in place of the browse button. All that does is turn the background of the field a color.CSS limitation, this can't be done currently. -Original Message- From: Asim Manzur

Re: Null null error ARGHHH!

2004-09-14 Thread Barney Boisvert
I've only every seen this when using an invalid date, usually with dateAdd().I've also seen CFCHART error with the same message when using dates as the labels on one of the axes the first time any chart is requested after a reboot. cheers, barneyb On Tue, 14 Sep 2004 11:18:04 -0500, Mark W.

RE: SOT: How to apply a style sheet to a file upload bottom.

2004-09-14 Thread Tangorre, Michael
I would recommend that you use your own graphics for the buttons. I usually use my own graphics button in place of the browse button. How exactly do you do that [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: SOT: How to apply a style sheet to a file upload bottom.

2004-09-14 Thread Ray Champagne
How does one do that?I know for regular buttons, but with the file type, I thought you were locked in to the default form button. Ray At 12:43 PM 9/14/2004, you wrote: I would recommend that you use your own graphics for the buttons. I usually use my own graphics button in place of the browse

RE: SOT: How to apply a style sheet to a file upload bottom.

2004-09-14 Thread Ciliotta, Mario
Asim, How do you actually do that?I have tried it before and it did not work.The code was unable to actually do the upload. I am assuming that you need to write a _javascript_ routine to do that? Is it possible to post an example? Thanks Mario -Original Message- From: Asim

Timeout on files over 2mb using CFFILE

2004-09-14 Thread Burns, John D
I have a situation where a server (on a military base that we don't have control over) will upload files fine that are under 2MB.As soon as you try uploading a file larger than 2MB the page thinks for about a second and goes immediately to a page not found error.We can do files that are 1.9MB and

Re: SOT: How to apply a style sheet to a file upload bottom.

2004-09-14 Thread Asim Manzur
Mario, I have seen that trick somewhere on web awhile ago, I am trying to find the link and will post. Asim, How do you actually do that?I have tried it before and it did not work.The code was unable to actually do the upload. I am assuming that you need to write a _javascript_ routine to do

Re: Incorporating Javascript to confirm into a document...

2004-09-14 Thread Brett Barnhart
Yes it did, thanks for your help! Unfortunately, having them on the same page made it enough more difficult that it was beyond my introductory knowledge of _javascript_ (but I am taking a class!). :) I was having a hard time passing a variable from the _javascript_ to use in CFIF.. if I could

Re: SOT: How to apply a style sheet to a file upload bottom.

2004-09-14 Thread Bob Haroche
I have seen that trick somewhere on web awhile ago, I am trying to find the link and will post. You can do the trick using CSS and _javascript_ and the GUI can be stylized as you want. The file upload function however won't work -- a 0 bit file is what's uploaded. That's due to a security

COM Problem

2004-09-14 Thread Shahzad.Butt
I wonder if someone can write me the Coldfusion Code for the following VB Code. Sub CreateCall() Dim MyRecord As Object Set Axapta = CreateObject(AxaptaCOMConnector.Axapta) Axapta.Logon Set MyRecord = Axapta.CreateRecord(CCMCTIInbound) MyRecord.InitValue MyRecord.field(UserID) = gp1

Re: Null null error ARGHHH!

2004-09-14 Thread Alisa Thomson
I am getting the same error except mine is pointing to a CFQUERY.I am running CFMX 6.1 Updater 3 on Solaris with Sybase 12.5 and jConnect 5.5. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Regex help

2004-09-14 Thread Dirk De Bock - Listclient
This is working ok in CF5 but apparently not in CFMX Malformed regular _expression_ \[[^\]*\]. Reason: Unmatched [] in _expression_.. REReplace(ThisTag.GeneratedContent, \[[^\]*\], , All) it's supposed to strip all [] with everyting inbetween the brackets [Todays Threads] [This Message]

Re: SOT: How to apply a style sheet to a file upload bottom.

2004-09-14 Thread Asim Manzur
I couldn't find that link yet, but I still had an idea that what was mentioned in that article. I have posted the link for you guys to review and advise. in this link, i have play with a trick to swap the browse button, and then post it to the .cfm file, through _javascript_ I am putting the

Re: Question about processing a CSV file.

2004-09-14 Thread Ryan Emerle
I have done a lot of work with file imports, you can check out cfx_text2query: http://www.emerle.net/programming/display.cfm/t/cfx_text2query Though, your CSV seems simple enough to parse as a list, without anything fancy.. unless that file is huge.. -R On Mon, 13 Sep 2004 22:36:19 +0100,

RE: Oracle Stored Procedures

2004-09-14 Thread Scott Mulholland
We are using the Oracle drivers that ship with MX Enterprise so according to that technote we should be ok with ref cursors. Thanks for the info Janet, I'm currently looking into having the cursor defined along the lines of your last post. Scott -Original Message- From: Janet

RE: [Spam?] Re: Regex help

2004-09-14 Thread Pascal Peters
I think you are missing a ] REReplace(ThisTag.GeneratedContent, \[[^\]]*\], , All) Or maybe even \[[^]]*\] On cfmx, you could use non-greedy matches: \[.*?\] Pascal -Original Message- From: Dirk De Bock - Listclient [mailto:[EMAIL PROTECTED] Sent: 14 September 2004 19:14 To:

Re: Null null error ARGHHH!

2004-09-14 Thread Al Everett
See: http://www.talkingtree.com/blog/index.cfm?data=""> --- Alisa Thomson [EMAIL PROTECTED] wrote: I am getting the same error except mine is pointing to a CFQUERY.I am running CFMX 6.1 Updater 3 on Solaris with Sybase 12.5 and jConnect 5.5. [Todays Threads] [This Message]

RE: Oracle Stored Procedures

2004-09-14 Thread Scott Mulholland
Janet, I have the snippet now from them.This is how it's currently defined (which looks like it's in line with what you posted aside from In Out): Type ReturnSet is ref cursor; Procedure testpckg(curReturnSet Out Returnset); They had switched it before to be In Out for me and I still had

  1   2   >