Hi,
I have an ActiveX project running in a browser and I want to make a popup window when an error occurs.
I use some javascript to open help windows in other parts of the project
I cant use this for my error windows though as an event needs to fire to get it going. (The errors will occur server side.)Code:Function openNew(url) win=window.open(url,"help","height=600,width=650,location=no,menubar=no,toolbar=no,status=no,scrollbars=yes,resizable=no") end function
Anyone know what I should put to open a new window?
/Andrew


Reply With Quote