ID:167834
 
One simple question, how do you have the browse function close after clicking a link? I have my Login system set up as a pop up system, but when you click a link and run the proc the pop up still remains. I just need to know how to close a pop up window one a link has been clicked. Thanks.
Give it a window name like so...



src<<browse("whatever...","window=namehere;restofstuff")

//Then, to close it, do this

src<<browse(null,"window=whatever the name of the window is")
In response to Cheetoz
Thanks Tim. ^^