This is a discussion on . IE Launch using IBrowser3 How can I launch Internet Explorer on the PocketPC... within the Mobile Software Development forums, part of the Software Development category; . IE Launch using IBrowser3 How can I launch Internet Explorer on the PocketPC/Smartphone 2003 using the IBrowser3 interface? I ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| . IE Launch using IBrowser3 How can I launch Internet Explorer on the PocketPC/Smartphone 2003 using the IBrowser3 interface? I tried the following - Code Snippet IBrowser3* pBrowser3 = NULL; IUnknown* pUnknown = NULL; hr = CoCreateInstance(CLSID_Browser, NULL, CLSCTX_INPROC_SERVER, IID_IUnknown, (void**)&pUnknown); if (SUCCEEDED (hr) && (pUnknown != NULL)) { hr = pUnknown->QueryInterface (IID_IBrowser3, (void**)&pBrowser3); } if (SUCCEEDED (hr) && (pBrowser3 != NULL)) { //How do I make the Browser visible? //On the desktop, we can use IWebBrowser2->put_Visible () //What can I do here? } Please advice & help.. |
| Sponsored Links |
| |||
| Hi Internet Explorer Mobile was updated for Windows Mobile 5.0 and those api's have removed from the SDK, you should take a look at the IWebBrowser* interface as these are the updated interfaces. |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Customise Internet Explorer Interface | vijayanand | Operating Systems | 1 | 08-08-2007 05:31 AM |
| internet explorer and firefox shortcuts | vijayanand | Operating Systems | 0 | 08-01-2007 05:44 AM |
| Can applets launch programs on the server? | kingmaker | Java Programming | 1 | 07-30-2007 08:06 AM |
| How to launch Real Player program through my j2me midlet program? | itbarota | J2ME | 1 | 07-25-2007 11:39 PM |
| Setup Project - Displaying Messages using Launch Conditions | raja | C# Programming | 0 | 05-08-2007 03:16 AM |