RE: order and re-oder

2003-09-17 Thread Gunther Ahamer
How about just assigning every image with a sequetial integer and for updating just do swaps with the IDs, sort of like a bubble sort. for reordering use a bit of CSS and javascript and have each of your images as a span with an onclick which highlights that image to show its selected. Between

RE: Problem with Web Service (WSDL Hanging)

2003-08-14 Thread Gunther Ahamer
just read this in the release notes for MX 6.1 44924 CFCs didn't work as web services when nonalphanumeric characters were used in CFC names, method names, or argument names. maybe this is the issue? regards, Gunther -Original Message- From: Ruggiero, Kevin D. [mailto:[EMAIL

RE: Incrementing a counter

2003-08-10 Thread Gunther Ahamer
value... Therefore, j is not a number but a string, so I have to use ReasonID as well. James -Original Message- From: Gunther Ahamer [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2003 9:11 PM To: CF-Talk Subject: RE: Incrementing a counter how about cfset ReasonList = a,b,d cfset

RE: Incrementing a counter

2003-08-06 Thread Gunther Ahamer
how about cfset ReasonList = a,b,d cfset ReasonID = 1,2,4 cfif #ReasonList# NEQ cfoutput#ReasonList# br #ReasonID# br/cfoutput cfloop list=ReasonList index=j cfset id = #ListGetAt(ReasonID,j)# cfoutputcounter = #j# br/cfoutput /cfloop

RE: CF - XML Questions

2003-07-30 Thread Gunther Ahamer
If its an actual web service that you are consuming here is what i do: 1. In CF admin register a webservice giving it the address of the WSDL. 2. on your page do CFSCRIPT ws = CreateObject(component,lib.webservice); ws.webserviceName = x; myCountries = ws.getCountries(); /CFSCRIPT 3.

RE: consistancy

2003-07-29 Thread Gunther Ahamer
Well this is a guess but I know that CF uses AXIS for its web services, and AXIS is a java package. Java refers to functions using the smalltalk lingo of methods. -Original Message- From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] Sent: Wednesday, 30 July 2003 9:12 AM To: CF-Talk

RE: SQL Query - Testing for bits

2003-07-23 Thread Gunther Ahamer
I guess you could use the SQL bitwise AND operators for this You want to get fields 5 and 3 so its 10100 == 20 SELECT * FROM TABLE WHERE (FLAGS 20 = 20) Gunther -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, 24 July 2003 3:26 PM To: CF-Talk

RE: dynamic naming???

2003-07-22 Thread Gunther Ahamer
use a jagged two dim array? Arrays = ArrayNew(1) cfloop... i cfset AryName[i] = ArrayNew(1) cfloop... j cfset AryName[i][j] = Somedata.field[j] /cfloop /cfloop -Original Message- From: Brrrian [mailto:[EMAIL PROTECTED] Sent: Wednesday, 23 July 2003

RE: Fire and forget a Stored Procedure

2003-07-20 Thread Gunther Ahamer
I am not 100% on this but I believe even if the user hits the stop button or disconnects the client some other way, CF will continue processing the page anyway. I dont think that IIS tells CF that the client has disconnected. Gunther -Original Message- From: DURETTE, STEVEN J (AIT)

RE: OT: SQL problem

2003-06-17 Thread Gunther Ahamer
Yes year is a function - you can escape them using [value] and [year] -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Tuesday, 17 June 2003 7:04 PM To: CF-Talk Subject: Re: OT: SQL problem Hugo Ahlenius wrote: I want to have a SELECT that gives me the

RE: OT: SQL problem

2003-06-17 Thread Gunther Ahamer
gotta use the As clause | SELECTCountryName, Value, Year | FROM table | WHERE | (CountryName, Year) IN ( | SELECT CountryName, MAX(Year) As Year | FROM table | GROUP BY CountryName | ) -Original Message- From: Hugo

RE: any flash experts?

2003-05-30 Thread Gunther Ahamer
yes you can - have the gradient layer on top of the sliding image... the gradient should be transparent to white try www.flashkit.com -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Friday, 30 May 2003 11:42 AM To: CF-Talk Subject: OT: any flash experts? hey, any

RE: SQL--Recursive Query Question

2003-05-30 Thread Gunther Ahamer
This is not very good but givens the idea. You shouldnt really use the function for output... a two dimensional jagged array would be nicer to hold the data so you can seperate the database logic from the display. The trick to calling functions recursivly in CF is the scoping of your variables.

RE: quick java open window ?

2003-05-30 Thread Gunther Ahamer
try '_blank' ? -Original Message- From: Dave Lyons [mailto:[EMAIL PROTECTED] Sent: Friday, 30 May 2003 4:33 PM To: CF-Talk Subject: ot: quick java open window ? how do i mod this to open in a new window? I tried changing the parent to blank but only got errors gracias p class=PANWOUT

RE: quick java open window ?

2003-05-30 Thread Gunther Ahamer
: Gunther Ahamer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May 30, 2003 2:40 AM Subject: RE: quick java open window ? try '_blank' ? -Original Message- From: Dave Lyons [mailto:[EMAIL PROTECTED] Sent: Friday, 30 May 2003 4:33 PM To: CF-Talk Subject: ot: quick java

RE: quick java open window ?

2003-05-30 Thread Gunther Ahamer
[i]+.location='+args[i+1]+'); } - Original Message - From: Gunther Ahamer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May 30, 2003 2:47 AM Subject: RE: quick java open window ? can you post the MM_goToURL javascript function and i can fix it for you

RE: Javascript Guru?

2003-03-31 Thread Gunther Ahamer
just set the checked property of the radio to true. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, 1 April 2003 1:18 PM To: CF-Talk Subject: Javascript Guru? When I have a user the selects a dropdown, I want to use an onClick event handler to

CFMX and long integers

2003-03-12 Thread Gunther Ahamer
Hi, I call a web service that returns a long integer. Now when I try to dump this to output I get 1.0461E+015. CF does seem to be internally aware that it is a long and does store it properly. Now how would i go about passing this from one page to another using a hidden form variable? Ive

RE: CFMX and long integers

2003-03-12 Thread Gunther Ahamer
] Sent: Thursday, 13 March 2003 3:04 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: CFMX and long integers Have you tried #NumberFormat(1.0461E+015)# ? It gives me 1,046,100,000,000,000 Joe Eugene -Original Message- From: Gunther Ahamer [mailto:[EMAIL PROTECTED] Sent: Wednesday