Hi David,
First of all, I would like to confirm my understanding of your issue. From
your description, I understand that you need to open an IE window with no
address bar. If there is any misunderstanding, please feel free to let me
know.
As far as I know, this can only be achieved by using some client side
script. When opening a new window using window.open, we can specify this in
the feature arguments. Here is an example,
function NewWindow()
{
window.open("http://www.microsoft.com", null,
"height=200,width=400,status=no,toolbar=no,menubar=no,location=no")
}
For more information on window.open, please check the following link:
http://msdn.microsoft.com/library/de...thor/dhtml/ref
erence/methods/open_0.asp
If you're working on a Windows form app that cannot use javascripts, you
can try to add an IE web browser control.
HTH.
Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."