Archived from groups: microsoft.public.windowsxp.general (More info?)
When the system tries to pop up the file (MSWord), the parent page will be
closed accordingly.
This will only happened when the parent page consists of frames, else it
wouldn't close.
//// initial codes - parent window will be closed if these codes are applied
document.location.href = v_strURL;
////parent window will NOT be closed if these codes are applied
window.open v_strURL,'winDocGen',
'height=200,width=400,status=yes,toolbar=no,menubar=no,location=no,resizable=no');
window.opener = self;
self.close();
Can I know the reason why the initial codes were not support?
You are about to answer a thread that has been inactive for more than 6 months. If you still wish to proceed, please ensure that your posting is original and does not duplicate or overlap any prior responses to this thread.