Re: ParseURLdata UDF problem

2005-07-14 Thread Jake .
Wonderful - whatever you did to the UDF worked perfectly. Thanks! > Wow, that UDF was old. It should work better now, and the second > argument is documented. > > On 7/13/05, Jake McKee <[EMAIL PROTECTED]> wrote: > > Hi there! > > > > I've just had a look at the cool ParseURLdata function on the

Re: ParseURLdata UDF problem

2005-07-14 Thread Raymond Camden
Wow, that UDF was old. It should work better now, and the second argument is documented. On 7/13/05, Jake McKee <[EMAIL PROTECTED]> wrote: > Hi there! > > I've just had a look at the cool ParseURLdata function on the CFlib.org site. > Unfortunately, I can't seem to get the function to work, and

ParseURLdata UDF problem

2005-07-13 Thread Jake McKee
Hi there! I've just had a look at the cool ParseURLdata function on the CFlib.org site. Unfortunately, I can't seem to get the function to work, and was hoping you might be willing to lend a hand. Basically, I've done a CFINCLUDE to get the UDF file, then do the example code: I'm not really

Re: UDF Problem

2004-05-25 Thread Jim McAtee
- Original Message - From: "Scott Brady" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, May 25, 2004 3:37 PM Subject: re: UDF Problem > Original Message: > > From: "Jim McAtee" > > But I can call DollarFor

Re: UDF Problem

2004-05-25 Thread Ben Doom
Try calling the function like this: priceRangeFormat(pricelo[1], pricehi[1]); Just a guess, though. --Ben Doom Jim McAtee wrote: > Using CF5. I pull two float columns (prices) from a table and then pass > the values to a CF function, shown below: > > function PriceRangeFormat(pricelo, pricehi

re: UDF Problem

2004-05-25 Thread Scott Brady
Original Message: > From: "Jim McAtee" > But I can call DollarFormat() directly on the values without error.  It's > only when I pass them into the CF function that I get the error.  All rows > in this table contain numbers in the two fields, from 0.0 to maybe 2000.0. > No null values. > > #Dolla

RE: UDF Problem

2004-05-25 Thread Raymond Camden
Can you show us how you are calling the UDF? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

UDF Problem

2004-05-25 Thread Jim McAtee
Using CF5. I pull two float columns (prices) from a table and then pass the values to a CF function, shown below: function PriceRangeFormat(pricelo, pricehi) {   return DollarFormat(pricelo) & " - " & DollarFormat(pricehi); } I receive the following error, no matter the values passed: >> Paramet