Tagged Questions
The axwebbrowser tag has no wiki summary.
1
vote
0answers
178 views
Problems automating FileDownload in the axWebBrowser control in C#
I'm working on a project trying to scrape an intranet site at my company because right now there are constraints that prohibit me from getting help on the server end of things. I'm writing a C# ...
1
vote
1answer
76 views
How can I get a screenshot a the AxWebBrowser instance in C#?
I am creating an instance of AxWebBrowser in a win forms app because I need it to render flash. How can take a screenshot of the page it's rendered in C#?
1
vote
3answers
2k views
How to use AxWebBrowser in console application
I wanna use AxWebBrowser on console application, but it give me following exception:
Exception of type 'System.Windows.Forms.AxHost+InvalidActiveXStateException' was thrown.
anybody please help me ...
1
vote
1answer
344 views
Getting loaded web page HTML source document from PIE web browser in windows mobile
We need to get web page HTML source document loaded on the PIE web browser in windows mobile. source code that we tried is listed below:
IDispatch* pHtmlDocDispatch;
IOleCommandTarget* ...
1
vote
1answer
356 views
AxWebbrowser Event Handlers not working anymore
The event handlers on my program don't work anymore for some reason. This same exact code I've ran several times before.
object loc = "http://www.google.com/";
object null_obj_str = "";
System.Object ...
0
votes
0answers
27 views
interacting with current instance of IE using AxWebBrowser
How I can get currently open instance of IE in AxWebBrowser control. Actully, AxWebBrowser control creates new isnatce of IE when navigate() method is called. What
I want to do is to catch currently ...
0
votes
1answer
31 views
Why I get a COMException (unknown error) with AxSHDocVw.AxWebBrowser with .Net 4 (works with .Net 2)
I'm trying to use a AxSHDocVw.AxWebBrowser in a project. It works fine with .Net 2 framework but if I target the .Net 4 framework I get a COMException.
Any ideas?
Using debug view I've seen this ...
0
votes
0answers
35 views
Readystate with Microsoft webbrowser
Hello all,
I was wondering, if it is possible to change the webbrowser to microsoft webbrowser.
I tried to do this but this waitTillLoad class is affected apparently.
Readystate doesn't like ...
0
votes
0answers
19 views
AXWebBrowser HTML Data loading issue
I am trying to display HTML file using AXWebBrowser. The HTML file is located on a WebShare as Phyiscal file. This HTML file has a Javascript which read the label from XML file. Now the issue is - If ...
0
votes
0answers
108 views
get events from pdf file in webbrowser control with c#
I have a C# Windows form with a single webbrowser control and a button on it. I am loading a PDF file from a database and displaying itin the webbrowser control. (I don't want to use the Adobe ...
0
votes
0answers
53 views
permissions for AxWebBrowser Windows Server 2008
I've developed a tiny application that receives an HTTP petition and make a snapshot of the web page using AxWebBrowser.
All goes fine in Windows XP, but when I run it in a Windows Server 2008, an ...
0
votes
1answer
195 views
How to wait for axWebBrowser to finish loading?
I am using axWebBrowser to do some web automation.
When the system triggers the NewWindow2 event, it is unable to keep track of an HTML element in the new window. After debugging, I noticed that the ...
0
votes
0answers
84 views
Export webbrowser control to XPS
HI All,
Is there any methods to export the webbrowser control to XPS like how we draw it as Metafile through API?
Thanks in advance
Regards,
0
votes
1answer
169 views
Mute an axWebbrowser Control
Hi Im looking for a way to mute an axWebbrowser control, either by muting the audio of the control itself or muting the application in the system volume control (mixer)
Has anyone done this before as ...
0
votes
1answer
1k views
Separate sessions using aXWebBrowser controls in WinForms app?
How to programmatically control multiple browsers (aXWebBrowser control), from a single winforms app process, targeting the same remote website, but each browser living in its own session scope with ...
0
votes
1answer
983 views
.NET AxWebBrowser can't open page “Navigation to the webpage was canceled” error
Oh, I am stuck again on this quiet annoying problem. I am trying to do a little automated browsing using the axWebBrowser component and it worked before. Now all of a sudden I get the following ...
0
votes
1answer
1k views
Using axWebBrowser control to capture page request and postdata
I'm writing a small utility to capture all requests made to a web server from a windows application using the axWebBrowser control.
So far I have the following working, as the user traverse the ...