Customised Alert Boxes

2004-03-11 Thread David Ashworth
Is there anyway of customising alert boxes to make them look nicer and more user friendly. Alternatively, has anyone ever used a pop up window to act in the same way as an alert box - where you submit a form, the pop up comes up and you can either continue or cancel and close the box - presume

Loops in Loops (let's go loopy)

2004-03-11 Thread Stuart Kidd
Hi guys, is it possible to put a cfloop inside a cfloop? Maybe there's a easier way to do this but basically, like on Google you can see the linked numbers 1,2,3,4,5,6,7,8, etc the amount of pages which have records on.You can click on them instead of having to keep clicking on 'next' throughout

RE: Loops in Loops (let's go loopy)

2004-03-11 Thread Pascal Peters
-Original Message- From: Stuart Kidd [mailto:[EMAIL PROTECTED] Sent: donderdag 11 maart 2004 12:45 To: CF-Talk Subject: Loops in Loops (let's go loopy) Hi guys, is it possible to put a cfloop inside a cfloop? Yes Maybe there's a easier way to do this but basically, like on

RE: Loops in Loops (let's go loopy)

2004-03-11 Thread Tim Blair
is there an easier way? I usually do that by having a couple of variables: page - the current page you're on (from URL) pagesize - the number of items on a page (hardcode/from URL) recordcount - the total number of results (from your query) You can then work out things like the total number of

Re: Loops in Loops (let's go loopy)

2004-03-11 Thread Stuart Kidd
In case i didn't make myself too clear, what i'm really needing is 2 counters in the same loop, one which goes in steps of 10 and the other in steps of 1. -- Original Message -- From: Stuart Kidd [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Thu, 11

RE: Loops in Loops (let's go loopy)

2004-03-11 Thread Tim Blair
Quick clarification: pagesize - the number of items on a page cfloop from=1 to=#pagecount# index=curpage a href=""> /cfloop Of course, if you do it this way then to get the records you actually need you'll have to do a quick multiplication and add one (so you get e.g. the 11th result first,

RE: Loops in Loops (let's go loopy)

2004-03-11 Thread Stuart Kidd
Thanks Tim and Pascal, That's the trick... before the replies came i was kind of getting the hang of it but my maths was all wrong i had (i/10)-1 but i can see it now. -- Original Message -- From: Tim Blair [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED]

OT : Purchasing Bens Book via PayPal

2004-03-11 Thread Daniel Mackey
Hi All, I know this is a bit off topic, but we had Ben Fortas book: Teach Yourself SQL in 10 Minutes (Sams) but some snakey developer visiting the office robbed it from us. We were wondering if anybody would know where we can pick up a copy and pay for it using PayPal? If someone on the list

RE: Loops in Loops (let's go loopy)

2004-03-11 Thread Tim Blair
Engage brain, then type... cfset startresults = (url.page * pagesize) + 1 Of course, if you use page=1, you'll start at result 11 which is wrong... Try: cfset startresults = (url.page * pagesize) - pagesize + 1 Sorry about that. Tim. ---

RE: Loops in Loops (let's go loopy)

2004-03-11 Thread John Beynon
Someone wrote a really nice customtag and posted it up here a while back, recordsetbrowser.cfm, it did all of this in itself... If you don't find it in the archives, shout me off list and I'll get a copy over to you.. -Original Message- From: Stuart Kidd [mailto:[EMAIL PROTECTED] Sent:

how to submit a form by pressing enter - bit complicated!

2004-03-11 Thread cf coder
Hello Everybody, Can I just say that I've looked everywhere to find a solution to this problem and have failed. I am posting my code and would really appreciate if someone could help. I have two forms in my page each contained in a div tag. Actually the second form is called from a iframe from

Insert dynamic form fields into a database

2004-03-11 Thread Jillian Carroll
I've got a form that is made up of a dynamic list of form fields.How do I write the SQL query so that it will loop over all of the fields to do the insert? My form: cfquery name=golfers datasource=#DSN# username=#db_username# password=#db_password# SELECT* FROMgolfers ORDER BY golfer_name

RE: Purchasing Bens Book via PayPal

2004-03-11 Thread Tangorre, Michael
Media/Book rate to Ireland should not be that much. I could pick one up for you and drop it in the mail if you'd like... I think that is ok, no? You could pay me back via paypal. Lemme know. Mike Hi All, I know this is a bit off topic, but we had Ben Fortas book: Teach Yourself SQL in 10

RE: Insert dynamic form fields into a database

2004-03-11 Thread Hagan, Ryan Mr (Contractor ACI)
All you need to do is loop through your form collection on the post_golfer_form.cfm page.Since your textboxes names are the golfers IDs, then you can use the textbox value to adjust the purse and the name of the textbox as the where clause.Like so: cfloop index=thefield list=#form.fieldnames#

RE: how to submit a form by pressing enter - bit complicated!

2004-03-11 Thread Pascal Peters
Place the code from the onClick of the image in the onSubmit of the form. form name=newcall id=newcall action=""> method=get return false; ... input type=image id=next_button name=next_button src=""> border=0 alt=Next , mouseaction_next); width=83px height=27px style=z-index:100

RE: Purchasing Bens Book via PayPal

2004-03-11 Thread Daniel Mackey
Hi Mike, That would be great! If you send me your PayPal address [EMAIL PROTECTED] , I will send the funds straight through! Thanks again, and looking forward to talking to you, Regards, Dan. -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11,

Re: OT : Purchasing Bens Book via PayPal

2004-03-11 Thread Adrocknaphobia
I have a couple extra copies lying around my house. Shoot me a message off list if your intrested. -Adam -Original Message- From: Daniel Mackey [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 12:04 PM To: 'CF-Talk' Subject: OT : Purchasing Bens Book via PayPal Hi All,

RE: Insert dynamic form fields into a database

2004-03-11 Thread Pascal Peters
If your database is case-insensitive or golfer_id is uppercase (or numeric): cfloop collection=#form# item=field cfquery datasource=#DSN# username=#db_username# password=#db_password# INSERT INTO tbl (golfer_id,golfer_purse) VALUES ( cfqueryparam cfsqltype=CF_SQL_CHAR value=#field#,

Re: how to submit a form by pressing enter - bit complicated!

2004-03-11 Thread cf coder
thanks so much for your reply. I removed the onClick event and added the onSubmit event and it works. Thanks again, much appreciated. cfcoder Place the code from the onClick of the image in the onSubmit of the form. form name=newcall id=newcall action=""> method=get return false; ... input

Re: Marketing / Design ???

2004-03-11 Thread Kevin Graeme
Looks good to me. Satisfies the did it do it?, did it do it right?, and what do I do next? questions quite nicely. Just a couple little things I noticed though: 1. On the customer registration page, the asterisk on the zip isn't red. 2. You could possibly streamline the address information.

RE: Customised Alert Boxes

2004-03-11 Thread Burns, John
Modal dialogues are probably your best bet, though some browsers don't respond well with them.In Longhorn, that sounds like more of what they're going for. John Burns -Original Message- From: David Ashworth [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 5:07 AM To: CF-Talk

RE: Insert dynamic form fields into a database - More Help Needed

2004-03-11 Thread Jillian Carroll
Okay, I'm an idiot this morning. I don't understand what I'm supposed to be substituting. My code: cfloop index=thefield list=#form.fieldnames# cfquery name=golfersupdate datasource=#DSN# username=#db_username# password=#db_password# UPDATE golfers SET golfer_purse =

Connecting to MySQL through CF 5 on Windows??

2004-03-11 Thread Burns, John
Is it possible to connect CF 5 (installed on a Windows 2000 Server) to a MySQL database?If so, how would I do it?MySQL doesn't show up in the drop-down list for databases you can choose from on the windows install of CF 5 like it does on the Linux install.Does that mean it's not supported? John

RE: Connecting to MySQL through CF 5 on Windows??

2004-03-11 Thread John Beynon
Have you installed the myODBC driver? -Original Message- From: Burns, John [mailto:[EMAIL PROTECTED] Sent: 11 March 2004 14:13 To: CF-Talk Subject: Connecting to MySQL through CF 5 on Windows?? Is it possible to connect CF 5 (installed on a Windows 2000 Server) to a MySQL database?If

RE: Insert dynamic form fields into a database - More Help Needed

2004-03-11 Thread Pascal Peters
UPDATE golfers SET golfer_purse = '#form[thefield]#' WHERE golfer_id = #thefield# -Original Message- From: Jillian Carroll [mailto:[EMAIL PROTECTED] Sent: donderdag 11 maart 2004 15:12 To: CF-Talk Subject: RE: Insert dynamic form fields into a database - More Help Needed

RE: Connecting to MySQL through CF 5 on Windows??

2004-03-11 Thread Burns, John
I haven't done anything.It's actually not my server, I'm having to get instructions and pass them along.If anyone could give me a step-by-step that'd be great! John Burns -Original Message- From: John Beynon [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 9:12 AM To: CF-Talk

RE: Insert dynamic form fields into a database

2004-03-11 Thread Pascal Peters
Let me correct myself (see inline): Pascal -Original Message- From: Pascal Peters Sent: donderdag 11 maart 2004 14:58 To: CF-Talk Subject: RE: Insert dynamic form fields into a database If your database is case-insensitive or golfer_id is uppercase (or numeric): cfloop

RE: Connecting to MySQL through CF 5 on Windows??

2004-03-11 Thread John Beynon
All I've done before is download the myODBC connector (http://www.mysql.com/downloads/api-myodbc-3.51.html) install it and then access the CF admin and mySQL appears in the list of databases. Jb. -Original Message- From: Burns, John [mailto:[EMAIL PROTECTED] Sent: 11 March 2004 14:20

RE: Insert dynamic form fields into a database - More Help Needed

2004-03-11 Thread Hagan, Ryan Mr (Contractor ACI)
Sorry about that, I had a slight typo in my code.The query should be: UPDATE golfers SET golfer_purse = #evaluate(form.#thefield#)# WHERE golfer_id = #thefield# This is just one way of doing this.Others will tell you, no doubt, that evaluate is inefficient and shouldn't be used.Unless you've

cfc, flash remoting and character set problems

2004-03-11 Thread Frederik Van Goolen
Hello, We have a flash remoting application that talks with a cfc. The cfc gets some (multi language) data from a MySQL database. We get the data properly in Coldfusion (we checked this by invoking the cfc with a browser and cfdump the query). When the data is in Flash however some characters are

RE: Insert dynamic form fields into a database - More Help Needed

2004-03-11 Thread Philip Arnold
From: Hagan, Ryan Mr UPDATE golfers SET golfer_purse = #evaluate(form.#thefield#)# WHERE golfer_id = #thefield# YUK! Ditch the Evaluate() SET golfer_purse = #form[thefield]# So much faster and cleaner [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: Insert dynamic form fields into a database - More Help Needed

2004-03-11 Thread Douglas.Knudsen
ok, I'll bite.hehe this should work...look ma, no evaluate!LOL! Good point though Ryan. SET golfer_purse = #form[#thefield#]# now, I'd add that you should be cautious about looping over form.fieldnames, you may, most likey will rather, have some form objects that are not part of the

Re: Loops in Loops (let's go loopy)

2004-03-11 Thread Cedric Villat
Stuart, I made a custom tag a while back that did just this. Check out http://www.cornfeed.com/index.cfm?p=productsn=cfpagelist for a quick demo and a free download. Cedric Villat Subject: Loops in Loops (let's go loopy) From: Stuart Kidd [EMAIL PROTECTED] Date: Thu, 11 Mar 2004 06:44:51

RE: cfc, flash remoting and character set problems

2004-03-11 Thread Burns, John
How did you fix the problem in CF?I just upgraded to MX and we're having trouble with data that was put into MySQL by CF is now coming out with funky characters in MX.We're on linux servers and I've tried setting the page charset to ISO-8859-1 but to no avail.Quotes come out as little boxes and

RE: Insert dynamic form fields into a database - More Help Needed

2004-03-11 Thread Marlon Moyer
cfQueryparam! cfQueryparam! cfQueryparam! cfQueryparam! cfQueryparam! Marlon -Original Message- From: Philip Arnold [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 8:47 AM To: CF-Talk Subject: RE: Insert dynamic form fields into a database - More Help Needed From:

Re: Connecting to MySQL through CF 5 on Windows??

2004-03-11 Thread Stephen Moretti
Not quite Install the myODBC drivers, then in Windows you'll need to add the datasource name through the Windows ODBC Manager control panel, as mySQL only shows up in the database type list in CF admin on *nix boxes. Once you've added the DSN through the control panel the data source will

RE: Insert dynamic form fields into a database - More Help Needed

2004-03-11 Thread Philip Arnold
From: Marlon Moyer cfQueryparam! cfQueryparam! cfQueryparam! cfQueryparam! cfQueryparam! To Camel Cap that properly, shouldn't it be cfQueryParam? g [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Customised Alert Boxes

2004-03-11 Thread Charlie Griefer
Hi David: if DHTML is an option for you, you can do something like: http://atl4.hostvelocity.com/~profal/dhtml/alert.html http://web-developer.boeldt.net/Cool_DHTML_PopUp.asp http://www.dhtmlmedia.com/popup/ - Original Message - From: David Ashworth [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: cfc, flash remoting and character set problems

2004-03-11 Thread Frederik Van Goolen
We found a solution for this problem on the folowing pages: http://forums.devshed.com/t112715/sdb8be35112ed57bd850c5f26231a88fa.html and http://www.dialoguedesigns.co.uk/dc2/page.cfm?pageid=cfmxproblems Last week I made a post on this list with the solution:

RE: Connecting to MySQL through CF 5 on Windows??

2004-03-11 Thread John Beynon
Must be different on CFMX then. I've only installed the myODBC connector but yet when I go to the cfadministrator and choose driver, it's listed in there, mySQL. -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED] Sent: 11 March 2004 14:55 To: CF-Talk Subject: Re:

Re: Connecting to MySQL through CF 5 on Windows??

2004-03-11 Thread Thomas Chiverton
On Thursday 11 Mar 2004 15:00 pm, John Beynon wrote: Must be different on CFMX then. CFMX uses JDBC, and I suspect that a mySQL JDBC connector ships with it. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business

Re: Connecting to MySQL through CF 5 on Windows??

2004-03-11 Thread Stephen Moretti
Yeah, CFMX kindly includes the driver in the listings whatever your OS, unlike CF5 Have contemplated adjusting the cf administrator on CF5 to allow adding mySQL datasourceBut that would require naughty bits of software and messing with allaire code :D Stephen John Beynon wrote:

Transferring Dreamweaver Sites and settings to new machine.

2004-03-11 Thread Angel Stewart
Hey all, I checked the archives, I could have sworn this was mentioned before! But I couldn't find any messages dealing with it, so here goes. How do I transfer my dreamweaver settings, including the Sites that I have created, to a new machine to duplicate my development environment? I

Piggyback question to: Transferring Dreamweaver Sites and settings to new machine.

2004-03-11 Thread Tony Weeg
Is it legal to take our Copies of DWMX and HS+ to our home dev boxes to use? just wondering. thanks! [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Transferring Dreamweaver Sites and settings to new machine.

2004-03-11 Thread John Beynon
Manage sites Export You need to go through each one and do it, but it beats having to recreate them when DW decides erase them all randomly!! Jb. -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED] Sent: 11 March 2004 15:27 To: CF-Talk Subject: Transferring Dreamweaver

RE: Transferring Dreamweaver Sites and settings to new machine.

2004-03-11 Thread Ben Forta
The Sites screen has IMPORT and EXPORT options. I believe you'll need to do the sites one at a time, and passwords are not exported, but other than that it should do what you want. --- Ben _ From: Angel Stewart [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 10:27 AM To: CF-Talk

RE: Transferring Dreamweaver Sites and settings to new machine.

2004-03-11 Thread John Beynon
Which was a great addition in DWMX2004 to allow passwords to transfer :) I've just found sourcesafe sites can't save passwords though... -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: 11 March 2004 15:33 To: CF-Talk Subject: RE: Transferring Dreamweaver Sites and

Re: Piggyback question to: Transferring Dreamweaver Sites and settings to new machine.

2004-03-11 Thread Jeff Small
Is it legal to take our Copies of DWMX and HS+ to our home dev boxes to use? just wondering. thanks! I actually *just* got off the phone a couple days ago about this very topic. I had installed Dreamweaver on a machine here at work and wanted to transfer the license, and was on the phone

RE: Piggyback question to: Transferring Dreamweaver Sites and settings to new machine.

2004-03-11 Thread Tony Weeg
EXCELLENT!!! see.macromedia isnt that big money grubbing behomoth some make them out to be! cool. thanks. -Original Message- From: Jeff Small [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 10:49 AM To: CF-Talk Subject: Re: Piggyback question to: Transferring Dreamweaver

RE: Piggyback question to: Transferring Dreamweaver Sites and set tings to new machine.

2004-03-11 Thread John Beynon
Conditions apply though... Section 2 of license.htm (a) Subject to Section 2(b), you may install and use the Software on a single computer; OR install and store the Software on a storage device, such as a network server, used only to install the Software on your other computers over an internal

RE: Piggyback question to: Transferring Dreamweaver Sites and set tings to new machine.

2004-03-11 Thread Tony Weeg
sure enough. just me.unless you count my pitbull -Original Message- From: John Beynon [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 10:52 AM To: CF-Talk Subject: RE: Piggyback question to: Transferring Dreamweaver Sites and set tings to new machine. Conditions apply

sql question

2004-03-11 Thread John mccosker
Hi, my head is twisted here trying to figures this out, I have three tables I am joining in a query like so, SELECT DBO.SECURITYFILTERS.FILTERNAME, DBO.SECURITYFILTERS.FILTERID, DBO.SECUREDUSERS.NAME, DBO.SECUREDUSERS.SUSERID FROM DBO.SECURITYFILTERS,DBO.SECUREDUSERS,DBO.APPLIEDFILTERS

Programmatically add/remove ip addresses for debugging?

2004-03-11 Thread Burns, John
Is there a way through a factory or something to be able to add/remove ip addresses for debugging?My connection to my server has a dynamic ip but I want to be able to change my ip for debugging without having to go through the administrator.Any ideas? John Burns [Todays Threads] [This

RE: Programmatically add/remove ip addresses for debugging?

2004-03-11 Thread Raymond Camden
http://www.cflib.org/udf.cfm?ID=1030 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: sql question

2004-03-11 Thread Adrocknaphobia
Missing a table join, try this: SELECT DBO.SECURITYFILTERS.FILTERNAME, DBO.SECURITYFILTERS.FILTERID, DBO.SECUREDUSERS.NAME, DBO.SECUREDUSERS.SUSERID FROM DBO.SECURITYFILTERS,DBO.SECUREDUSERS,DBO.APPLIEDFILTERS WHERE DBO.SECURITYFILTERS.FILTERID IN ( SELECT

RE: Programmatically add/remove ip addresses for debugging?

2004-03-11 Thread Ben Forta
This should be exactly what you want: http://www.forta.com/blog/index.cfm?mode=e http://www.forta.com/blog/index.cfm?mode=eentry=1004 entry=1004 _ From: Burns, John [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 11:09 AM To: CF-Talk Subject: Programmatically add/remove ip

Re: sql question

2004-03-11 Thread John mccosker
Missing a table join, try this: SELECT DBO.SECURITYFILTERS.FILTERNAME, DBO.SECURITYFILTERS.FILTERID, DBO.SECUREDUSERS.NAME, DBO.SECUREDUSERS.SUSERID FROM DBO.SECURITYFILTERS,DBO.SECUREDUSERS,DBO.APPLIEDFILTERS WHERE DBO.SECURITYFILTERS.FILTERID IN ( SELECT

Split screen editor for two files

2004-03-11 Thread Jeff Beer
Anyone know of a decent editor for CF that allows split screens for two or more files? I'm working with a template that's about 1500 lines and need to refer to the original pretty often. I'm currently using CF Studio 5.. I'm downloading Eclipse right now - it's super slow at about 9KB per..

OT: Dreamweaver Local Save Speed

2004-03-11 Thread Adrocknaphobia
So yeah, long time HS user... converted DW user. DW has been 'alright' an all, but I've run into an issue on this one box thats making me long for HS. Problem is, when I save a file (locally) it can take up to 20 seconds! I've read a couple threads with people who have run into the same

RE: Dreamweaver Local Save Speed

2004-03-11 Thread Robert Redpath
Some hints on making DW faster: http://www.dwteam.com/Articles/speedhints/index.asp http://www.dwteam.com/Articles/speedhints/index.asp -Original Message- From: Adrocknaphobia [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 11:26 AM To: CF-Talk Subject: OT: Dreamweaver Local

How to use Java program with in ColdFusion MX

2004-03-11 Thread Pete Ruckelshaus
Hey, I need to use a Java application program(Either simple Java class or Servlet) with in ColdFusion MX application program.I tried to use java class using cfobject tag but it gives the error that 'class file not found' though I did set classpath using ColdFusion administrator.I dont know how to

RE: Dreamweaver Local Save Speed

2004-03-11 Thread John Beynon
That's the problem - fbx_switch.cfm, the default install of DWMX will be including the content. Edit Preferences Invisible Elements, clear the bottom check box 'Show Contents of included file' Also you could turn off site cache in the site setup, Jb. -Original Message- From:

RE: CFFILE MOVE

2004-03-11 Thread Bruce, Rodney S HQISEC/Veridian IT Services
Same here. at least with CF5,from the Help : BM_1410542 Attribute BM_1410544Description BM_1410546source BM_1410548Required. The full pathname of the file to move. BM_1410550destination BM_1410552Required. The full pathname of the directory or full pathname of the file to which the file will

OT: MAX 2k4

2004-03-11 Thread Adrocknaphobia
Any news on dates or locations? If not, any news on when dates and location will be disclosed? -Adam [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

(SOLVED) Re: Dreamweaver Local Save Speed

2004-03-11 Thread Adrocknaphobia
JB, you're my hero. -Original Message- From: John Beynon [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 04:29 PM To: 'CF-Talk' Subject: RE: Dreamweaver Local Save Speed That's the problem - fbx_switch.cfm, the default install of DWMX will be including the content.

XMLSearch Xpath Question

2004-03-11 Thread Westin, Ken
OK so I have been able to use XMLSearch filter by attributes, however I want to be able to filter by the actual text between tags...the funny thing is all of my CFMX books only filter by attributes in their examples. I know this has to be really easy, but I am not sure how to write an XPath

RE: (SOLVED) Re: Dreamweaver Local Save Speed

2004-03-11 Thread John Beynon
That site posted a second ago for speeding up disagrees with turning off the site cache but I've never used it and never seen any problems. All these people bitchin' about DW - I think it's great! Just needs a few tweaks to operate at speed! -Original Message- From: Adrocknaphobia

RE: MAX 2k4

2004-03-11 Thread Ben Forta
Announcement should be real soon now. (I hope). _ From: Adrocknaphobia [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 11:37 AM To: CF-Talk Subject: OT: MAX 2k4 Any news on dates or locations? If not, any news on when dates and location will be disclosed? -Adam _ [Todays

CFMX Java API

2004-03-11 Thread Jeff Chastain
I have a Java based application API (Plumtree Software's EDK) that I would like to access using ColdFusion.The problem is my Java is a bit rusty to say the least.Can anybody offer some pointers as to where I would start in attempted to instantiate a Java package (hopefully this is the right

RE: MAX 2k4

2004-03-11 Thread Raymond Camden
I seem to remember a city mentioned on the MAX2003 feedback form - but now I can't remember it. Anyone else does? I want to say East Coast again but I could be remembering wrong. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: MAX 2k4

2004-03-11 Thread Adrocknaphobia
Yeah, but that doesnt mean anything. Remember at DevCon2002 they had all those signs up that said.. See you next year in San Diego. But as we all know San Diego means Salt Lake City in Macromedia speak. -Adam -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent:

RE: MAX 2k4

2004-03-11 Thread Ben Forta
Final decision between one of two cities has not been made. But we're close, very close. :-) _ From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 11:44 AM To: CF-Talk Subject: RE: MAX 2k4 I seem to remember a city mentioned on the MAX2003 feedback form - but now

Re: CFMX Java API

2004-03-11 Thread Massimo Foti
I have a Java based application API (Plumtree Software's EDK) that I would like to access using ColdFusion.The problem is my Java is a bit rusty to say the least.Can anybody offer some pointers as to where I would start in attempted to instantiate a Java package (hopefully this is the right

Re: MAX 2k4

2004-03-11 Thread Phillip B
How much did it cost last year? I want to got to CFUN and MAX04 so I need to see if its in the budget to do both. Phillip B. Raymond Camden wrote: I seem to remember a city mentioned on the MAX2003 feedback form - but now I can't remember it. Anyone else does? I want to say East Coast

RE: Wierd query of query issue

2004-03-11 Thread Paul Vernon
I've just got my hands on a new W2k3 server and installed the MX6.1 trial. The problem as described in the original message no longer exists Must be a CF5 issue only... ho hum. Paul _ From: Paul Vernon Sent: Wednesday, 10 March 2004 11:50 To: CF-Talk Subject: Wierd query of query

RE: MAX 2k4

2004-03-11 Thread Ben Forta
But as we all know San Diego means Salt Lake City in Macromedia speak. Yeah, that was unfortunate. But when the dates had to slip (because of product release changes) the venue in San Diego was no longer available. But, as it turned out, Salt Lake City was great! _ From:

Re: CFMX Java API

2004-03-11 Thread Bryan Stevenson
re-visit CreateObject()that will allow you to fire up the java objects that you'll use in the package cfset jFileIn = createObject(java,java.io.File).init(ARGUMENTS.FileLoc) as far as getting CF to recognize your Java packageif you're on Windows then just drop the JAR or CLASS files in the

RE: MAX 2k4

2004-03-11 Thread Burns, John
Ben, Can we know the two possible cities?I'm trying to estimate my training budget for the upcoming year and if it were DC or Baltimore, that'd be very nice, but anywhere else would be a bit more costly.Let me know...if you can :-) John PS - Thanks for the link about the debugging Ips

Re: XMLSearch Xpath Question

2004-03-11 Thread Massimo Foti
This should work: /catalog/course/subject[text()='DS'] Even better, you could trim the text before comparing it: /catalog/course/subject[normalize-space(text())='DS'] You can find an excellent tutorial here: http://www.w3schools.com/xpath/default.asp A great book:

RE: MAX 2k4

2004-03-11 Thread Raymond Camden
Final decision between one of two cities has not been made. But we're close, very close. :-) One just hopes MACR remembers that there exists a few cities on the West Coast. ;) Personally all the old cities were fine for me, but it would be nice for a change to fly the other direction.

RE: MAX 2k4

2004-03-11 Thread Tony Weeg
salt lake city ROCKED. we should go back there...great times had by all! whats on the plate?boston, dc? -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 11:57 AM To: CF-Talk Subject: RE: MAX 2k4 But as we all know San Diego means Salt Lake

Re: Split screen editor for two files

2004-03-11 Thread Rob
On Thu, 2004-03-11 at 08:19, Jeff Beer wrote: Anyone know of a decent editor for CF that allows split screens for two or more files? I'm working with a template that's about 1500 lines and need to refer to the original pretty often. I'm currently using CF Studio 5.. I'm downloading Eclipse

RE: CFMX Java API

2004-03-11 Thread Jeff Chastain
Thanks, this make sense.Now I just need to find a Jar or Class file. On the off chance - anybody done any work with the Plumtree EDK? Thanks -- Jeff _ From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 10:57 AM To: CF-Talk Subject: Re: CFMX Java API

RE: Transferring Dreamweaver Sites and settings to new machine.

2004-03-11 Thread Sparrow-Hood, Walter
Check this out also: http://navbars.net/nav/navbar_resources.htm worked great for me when I switched machines. Walt -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 10:27 AM To: CF-Talk Subject: Transferring Dreamweaver Sites and

CFMX Regexes

2004-03-11 Thread Jim McAtee
On the CF Server list I mention that we've not yet migrated from CF5 to CFMX and asked if there are any code changes necessary.I recall reading on this list that the regex language has changed in CFMX from POSIX compliant to a more Perl-like style.Does this mean that old code needs to be

RE: cfc, flash remoting and character set problems

2004-03-11 Thread Rob
On Thu, 2004-03-11 at 06:49, Burns, John wrote: How did you fix the problem in CF?I just upgraded to MX and we're having trouble with data that was put into MySQL by CF is now coming out with funky characters in MX.We're on linux servers and I've tried setting the page charset to ISO-8859-1

RE: MAX 2k4

2004-03-11 Thread Ben Forta
No can do :-) _ From: Burns, John [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 11:57 AM To: CF-Talk Subject: RE: MAX 2k4 Ben, Can we know the two possible cities?I'm trying to estimate my training budget for the upcoming year and if it were DC or Baltimore, that'd be very

Re: Split screen editor for two files

2004-03-11 Thread Tom Smith
have you tried Jedit?might be worth looking into as you split screen across multiple files - Original Message - From: Jeff Beer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 11, 2004 4:19 PM Subject: Split screen editor for two files Anyone know of a decent

RE: Customised Alert Boxes

2004-03-11 Thread David Ashworth
cheers for the links I found this one in the end and it seems to be working pretty well http://developer.netscape.com/viewsource/goodman_modal/goodman_modal.htm l works in netscape also -Original Message- From: Burns, John [mailto:[EMAIL PROTECTED] Sent: 11 March 2004 14:09 To:

Re: cfc, flash remoting and character set problems

2004-03-11 Thread Paul Hastings
the problem is simply that these chars reside in the windows codepage (official name slipped my mind) which isn't quite the same as iso-8859-1--even though some will folks insist these are the same no matter what. just use unicode.or you will be visited. [Todays Threads] [This Message]

Re: CFMX Regexes

2004-03-11 Thread Michael Dinowitz
I've only found one issue and it's so rare that you'll probably never see it. It involves 'blank' matches and subexpressions. There's a full explanation of it on the front of HoF (down mid page or so). Other than that, CFMX RegEx are a huge leap over CF 5 RegEx. Still not perfect, but really good.

RE: MAX 2k4

2004-03-11 Thread Tangorre, Michael
Doggie pile on Ben for keeping secrets! -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 12:21 PM To: CF-Talk Subject: RE: MAX 2k4 No can do :-) _ From: Burns, John [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 11:57

RE: Split screen editor for two files

2004-03-11 Thread Jeff Beer
Man.. I completely forgot about Jedit. I've used it before.. Doh! Thanks Tom -Original Message- From: Tom Smith [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 12:23 PM To: CF-Talk Subject: Re: Split screen editor for two files have you tried Jedit?might be worth looking into

Re: (SOLVED) Re: Dreamweaver Local Save Speed

2004-03-11 Thread Adrocknaphobia
Agreed. Although they should start shipping the CFMX Function Reference out of the box. -Adam -Original Message- From: John Beynon [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 04:37 PM To: 'CF-Talk' Subject: RE: (SOLVED) Re:Dreamweaver Local Save Speed That site

RE: cfc, flash remoting and character set problems

2004-03-11 Thread Burns, John
Rob, What range would these invalid MS word characters fall into? John -Original Message- From: Rob [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 12:29 PM To: CF-Talk Subject: RE: cfc, flash remoting and character set problems On Thu, 2004-03-11 at 06:49, Burns, John

RE: MAX 2k4

2004-03-11 Thread Burns, John
I agree.I say we boycott any of his books til he tells us.For some reason I don't think I'd get a large following on that effort though :-) John -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 12:33 PM To: CF-Talk Subject: RE: MAX 2k4

RE: cfc, flash remoting and character set problems

2004-03-11 Thread Rob
On Thu, 2004-03-11 at 09:39, Burns, John wrote: Rob, What range would these invalid MS word characters fall into? I believe they actually map to control characters IIRC ... * Long dashes * Curly single quotes * Trademark symbol True Type fonts in Microsoft Windows systems use a superset of

Reliable way to get ID of inserted record

2004-03-11 Thread Burns, John
I know this came up last week or so, but I believe the answer came for a mySQL database.I need a way in MS SQL to get the last inserted record via CF.I have a query inserting a row into the table with an auto-increment ID. I need to insert that ID into a separate table in another query so I first

RE: MAX 2k4

2004-03-11 Thread Burns, John
I was gonna say.The comments I heard about SLC left much to be desired...at least referring to anything going on outside of the conference. John -Original Message- From: Paul Kenney [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 12:29 PM To: CF-Talk Subject: RE: MAX 2k4

RE: MAX 2k4

2004-03-11 Thread Tony Weeg
fat chance, we had a blast in the basement many mm people, many developers from this list, and cfc list...it was killer. the party rocked.. and paul, may I never see you dance :)PLEASEE! -Original Message- From: Burns, John [mailto:[EMAIL PROTECTED] Sent: Thursday, March

  1   2   >