cuetzpalin
Programmer
I have a page that displays a record id on which is tagged with <a href </a>. When the record id is clicked it opens a new window. The window has a vbscript sub routine that looks like this:
**********************************
Sub window_onload
call window.onload ("./AAA_StoreEntryForm.asp","AAA_StoreEntryForm",scrollbars=no,status=no,toolbar=no,location=no,directories=no,menubar=no)
Call window.moveTo((screen.width - 550) \ 2, (screen.height - 570) \ 2 )
call window.resizeTo(550, 570)
End Sub
*************************************
The moveto and resize works fine. It's the window.onload that acts goofy. It flickers for about 5 minutes then stops. Then when you close the window another instance exists with scrollbars, directories, location, toolbar...all the stuff I don't want.
Please help.
Thank you,
Ed
**********************************
Sub window_onload
call window.onload ("./AAA_StoreEntryForm.asp","AAA_StoreEntryForm",scrollbars=no,status=no,toolbar=no,location=no,directories=no,menubar=no)
Call window.moveTo((screen.width - 550) \ 2, (screen.height - 570) \ 2 )
call window.resizeTo(550, 570)
End Sub
*************************************
The moveto and resize works fine. It's the window.onload that acts goofy. It flickers for about 5 minutes then stops. Then when you close the window another instance exists with scrollbars, directories, location, toolbar...all the stuff I don't want.
Please help.
Thank you,
Ed