Re: which is the best way to do auto retrieval of Address...

2002-02-28 Thread han peng
thanx ppl!! problem solved! but hmm.. anyone know how to hide the popup.. under the parent page.. so that the user dun even know theres a pop up to generate it...??!! HAPPY MAN, han - Original Message - From: Steve Oliver [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday,

RE: which is the best way to do auto retrieval of Address...

2002-02-27 Thread Steve Oliver
Yes you could do that, in the onchange paramater of the select box have it popup a new window. Do the query in that new window, then user the following javascript. script opener.formname.streetname = 'qry.StreetName'; opener.formname.city = 'qry.City'; /script If the form isn't named, and you

Re: which is the best way to do auto retrieval of Address...

2002-02-27 Thread Jon Hall
http://www.ashleyit.com/rs/main.htm jon - Original Message - From: han peng [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, February 27, 2002 1:13 AM Subject: which is the best way to do auto retrieval of Address... hi... i need to do a address input fields.. where

which is the best way to do auto retrieval of Address...

2002-02-26 Thread han peng
hi... i need to do a address input fields.. where customer can choose their postal code.. and his house number and streetname will be retrieved out automatically... the codes below actually can do the work.. but because theres about 100,000 data to be put into array...so it took almost like a

RE: which is the best way to do auto retrieval of Address...

2002-02-26 Thread Robert Obreczarek
How about using frames? maybe an iframe/ilayer. that way you could click on a name, and the info would pop in a another frame Robert -Original Message- From: han peng [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 26, 2002 10:13 PM To: CF-Talk Subject: which is the best way to do

Re: which is the best way to do auto retrieval of Address...

2002-02-26 Thread han peng
hmm.. are u saying... upon selected a postal code.. i callup a popup page which will perform a cfquery and do a matching... then pass back the matched value back to parent?? can I do that..?? if can... how shld i pass the value to and fro child and parent page...?? cheers han - Original