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(KUrl, "file://BrCtlSampleApp/sample1.htm");
iBrCtlInterface->LoadUrlL( KUrl );
which is working perfect on E32,E63 device but not working on N73 device
i do not understand as it is supported from 2nd fp3 which is not showing on 3rd edition N73 device
if any one have face same problem plz let me know
i have implemented this code from sdk example BrCtlSampleApp which is not also working on N73 device
thanks in advance