ppDisp argument to NewWindow2 event
Tue, 13 Mar 2007 11:10:30 -0700
That ppDisp object that gets passed int o the NewWindow2 event, where does it
originate? IOW, where does the WebBrowser control get it in order to pass it
to this event and thereafter use it as a destination window?
If it is accessible, can someone tell me how to get it outside of the
NewWindow event, so ...
|
window.external failing on hosted IE7
13 Mar 2007 08:21:44 -0700
Hi
My app hosts a web browser ctrl in a MFC CHtmlView with a custom
control-site implementing IInternetSecurityManager.
ProcessUrlAction() is implemented as:
{
METHOD_PROLOGUE(COleControlSiteEx, InternetSecurityManager)
DWORD dwPolicy = URLPOLICY_ALLOW;
if ( cbPolicy >= sizeof (DWORD))
{
* ...
|
BHO and threads
13 Mar 2007 06:39:34 -0700
Hello to all.
Let us imagine that we have some Browser Helper Object. On completing
downloading a page from some url (eg www.test2.com/index.htm) , BHO
creates new thread, passing a pointer to "www.test2.com/index2.htm"
as parameter :
unsigned WINAPI SomeThread(void *pParam){
char *szUrl ...
|
BHO, threads and unhandled exception
13 Mar 2007 06:18:18 -0700
Hello to all.
Let us imagine that we have some Browser Helper Object. On completing
downloading a page from some url (eg www.test2.com/index.htm) , BHO
creates new thread, passing a pointer to "www.test2.com/index2.htm"
as parameter :
unsigned WINAPI SomeThread(void *pParam){
char *szUrl ...
|
BHO, threads and unhandled exception
13 Mar 2007 06:14:17 -0700
Hello to all.
Let us imagine that we have some Browser Helper Object. On completing
downloading a page from some url (eg www.test2.com/index.htm) , BHO
creates new thread, passing a pointer to "www.test2.com/index2.htm"
as parameter :
unsigned WINAPI SomeThread(void *pParam){
char *szUrl ...
|
Can I call a Javascript function using a BHO
Tue, 13 Mar 2007 10:15:43 -0000
Hello
I am writing a BHO to automate some web processes. I want to call a
javascript function. Reason is the web page I want to open is not viewable
on the web page I am automating. There is no link to it.
If I click on the links that are on the page you see this sort of thing:
javascript:OpenWindow( ...
|
IE Navigate problems with redirecting web page
12 Mar 2007 10:17:23 -0700
Hello
I am using the IE automation to navigate to a web page. The web
page the user enters is a bit like this:
http://MyHost:7001/Mid-Tier/home
If you manually enter the URL it redirects to this:
http://MyHost:7001/Mid-Tier/shared/login.jsp
But in the IE automation if I Navigate to the /home (which ...
|
|
|
OLECMDID_PAGESETUP select printer other than default
12 Mar 2007 04:33:17 -0700
Hi all
I'm working on a web app that prints without print dialog, custom
margins, header, footer etc.
I was able to make this work with the windows default printer
WB.ExecWB(OLECMDID_PRINT, OLECMDEXECOPT_DONTPROMTUSER,1)
But .. it is really necessary to have the app print to a non-default
printer.
Is th ...
|
WebBrowser Control and IFrame elements
Sat, 10 Mar 2007 10:46:08 -0800
I am writing a solution in MSAccess 2003 that uses the WebBrowser control to
get data from a website. The solution requires me to login once, and, for
multiple records, enter some search criteria which takes me to a page with
the data I ultimately want to get. I login and submit my search ok. However,
the ...
|
How to get the text input fields in an HTML page?
Fri, 9 Mar 2007 11:50:58 -0000
Hello
I want to access the text fields in an HTML page. Can I get the name of the
fields? Can I insert text into these fields? How?
...
|