I want to show browser control in my application for which I wrote the code
if (iBrCtlInterface == NULL)
{
TRect rect(Position(), Size());
iBrCtlInterface = CreateBrowserControlL( this,
rect,
TBrCtlDefs::ECapabilityDisplayScrollBar | TBrCtlDefs::ECapabilityLoadHttpFw,
iCommandBase,
NULL,
NULL,
NULL,
NULL,
NULL);
}
_LIT(KUrl, "file://BrCtlSampleApp/sample1.htm");
iBrCtlInterface->LoadUrlL( KUrl );
which works fine on an E32 device, E63, but does not work on an N73 device.
I do not understand, since it is supported from the second fp3, which is not displayed on the device of the 3rd edition of N73
if anyone has the same problem plz let me know
I implemented this code from the SDK example BrCtlSampleApp, which also does not work on the N73 device
Thanks in advance.
source
share