WebBrowser
-
Hi all, I want to add the functionality , that set the url document, right to left document and left to right document. In visual c++ , mfc. Please help.... thanks Lilach.
I'm a little confused about what you needed... but here is instruction on how to include the web browser control on a dialog. Go to project, Add To Project, Components and Controls. Go to Registered Active X controls and select Microsoft Web Browser. This should create the files WebBrowser2.cpp & .h In you dialog #inlcude “WebBrowser2.h” then when you want to fill in you browser with a site add the following CWebBrowser2* pBrowser = (CWebBrowser2*)GetDlgItem( IDC_EXPLORER1 ); COleVariant varEmpty = new COleVariant; pBrowser->Navigate( "http://www.carolecode.com", &varEmpty, &varEmpty,&varEmpty, &varEmpty ); ================== The original message was: Hi all,
I want to add the functionality , that set the url document, right to left document and left to right document. In visual c++ , mfc. Please help....
thanks Lilach.