browser-control

Disable Drag and Drop on HTML elements?

Hello all. I'm working on a web application for which I'm attempting to implement a full featured windowing system. Right now it's going very well, I'm only running into one minor issue. Sometimes when I go to drag a part of my application (most often the corner div of my window, which is supposed to trigger a resize operation) the web b...

WebBrowser control: Detect navigation failure

I am hosting a webbrowser control, that usually loads an external documents, then makes some modifications using HTML DOM. We also embed custom application links using a fake protocol, such as "Close This" that are caught and handled in BeforeNavigate2. When the link tarket is misspelled (say, "spp:CloseWindow"), BeforeNavigate will no...

How to display html content converted into xaml flowdocument in wpf application

My objective is to display html content in wpf application. I use brwoser control but this always goes on top of window. I search through the net and found a solution to convert the html into a flow document. But my question is how to use the conveted flowdocument in wpf application to show the html content Please refer the below articl...

Browser issue symbian

hi all, i want to show browser control in my application for which i have written code if (iBrCtlInterface == NULL) { TRect rect(Position(), Size()); iBrCtlInterface = CreateBrowserControlL( this, rect, TBrCtlDefs::ECapabilityDisplayScrollBar | TBrCtlDefs::ECapabilityLoadHttpFw, iCommandBase, NULL, NULL, NULL, NULL, NULL); } _LIT...

[Symbian] Using Browser Control's PostUrlL API

Hi All, I'm trying to POST some multipart form data to my server using a Browser Control. The PostUrlL(); Method Panics with KERN-EXEC 3 as soon as it is invoked. Here's a snippet similar to the one I'm using in my code. // These LITerals are copied to pointer vars below _LIT8(K_txt_Boundary, "0xABeR1122EEFFx0"); _LIT8(K_CT_Multipart...