Ask a Question related to ASP Components, Design and Development.
-
Ray at #1
Re: Problem with InternetExplorer.Application
Please do not multipost.
Ray at work
"Killian" <Killian@discussions.microsoft.com> wrote in message
news:A0BE1222-8ED0-45EF-9936-818E3F7239D0@microsoft.com...> I'm using an Internet Explorer object from within ASP server side script,
> basically opening another web page, waiting for it to finish opening and
> then
> closing down the explorer.
>
> Code is
>
> Set ie = CreateObject("InternetExplorer.Application")
> ie.Navigate2 "http://softcoweb/GCC_ExportDoc.ASP?docid=" & vDocID
> ie.Visible = False
> Do
> Loop While ie.Busy
> ie.Quit
> set ie = nothing
>
> Simple enough stuff, you might say. The problem is that I keep getting the
> following error
>
> "The object invoked has disconnected from its clients."
>
> The following might clarify a few things.
> - The error occurs after I call Navigate2 function and happens when I try
> to
> access the Visible property.
> - This code does work on my Local Machine when I call it through
> LocalHosts
> - I've written a VB form that contains this code and it works on the
> server
> where the ASP Page is running. So it runs in VB but not in ASP on the same
> machine.
> -The Server is running Microsoft Windows 2000 SP4 and so is the machine on
> which I have developed the web page (works on my machine but not on the
> server)
>
> I've been through every search engine and web site to get a solution to
> this. It has broken my heart. Any help would be greatly appreciated.
Ray at Guest
-
Problem with ExternalInterface.call and InternetExplorer
Hi, I´m developing a site, (http://www.gen-studio.com/avelart2/), and I´m using a swf to display a set of thumbs that when clicked show an item and... -
Win32::OLE, InternetExplorer, NewWindow, Events --- crashes
I'm working on an application that automates IE and needs to handle IE's NewWindow2 event. The IE documentation for the event gives the following... -
XML connector .trigger() doesn't fire in InternetExplorer (IE)?!
You have http://studio.listopadweb.hr/branimircentar/bcdata1.html . When I browse the page in Firefox 1.0.3. it works like a charm. The indicator... -
prolems with dispaying the result page in internetexplorer
:confused; in my site i have a search page and a result page, but when i perform a search the result page cannot be displayed and i get this... -
CFHEADER, CFCONTENT, Acrobat 6.0 and InternetExplorer problem...
Originally posted by: cf_menace This works perfectly with Acrobat 6.0 and MSIE 6.0. The key to getting the PDF plug-in to save the PDF as the... -
sclow@uk.ibm.com #2
Re: Problem with InternetExplorer.Application
Are you using any IE popup killer programs? Any firewall or antivirus settings getting in the way of IE opening?
After the CreateObject or ie.Navigate2, try adding something like:
if Err.Number <> 0 Then MsgBox "Failed to open IE for some reason..."&vbCr&vbCr&"Error "&Err.Number&": "&Err.Description,"Error",vbSystemModal
************************************************** ********************
Sent via Fuzzy Software @ [url]http://www.fuzzysoftware.com/[/url]
Comprehensive, categorised, searchable collection of links to ASP & ASP.NET resources...
sclow@uk.ibm.com Guest



Reply With Quote

