WebBrowser

  • Thread starter Thread starter anju
  • Start date Start date
A

anju

I am using a WebBrowser control in my application. When i try to
download the file through this control, it will show a pop-up of
"File Download".

I tried to handle it automatically and hove done this.

But now I want to hide this window and want to make whole operation at
back end.



Can anyone help me?????
 
I am using a WebBrowser control in my application. When i try to
download the  file through this control, it will show a pop-up of
"File Download".

I tried to handle it automatically and hove done this.

But now I want to hide this window and want to make whole operation at
back end.

Can anyone help me?????

Perhaps:

Set ie = CreateObject("InternetExplorer.Application")
..e.Visible = False
 
Back
Top