J
Jaikant
I am using HTML control in my C++ application for Windows Mobile 5 and 6.
Using following code to navigate to a valid URL.
TCHAR szUrl[1024];
wcscpy(szUrl, TEXT("http://<some valid url >/ptg/rm"));
::SendMessage(m_hwndHtml ,DTM_NAVIGATE , 0, (LPARAM)szUrl);
Above code works fine in Windows Mobile 5 and navigates to the specified
URL but same code does not work in Windows Mobile 6 device.
Also above code works fine in Windows Mobile 6 EMULATOR and navigates to
the specified URL but same code does not work in Windows Mobile 6 device .
Pls help
Using following code to navigate to a valid URL.
TCHAR szUrl[1024];
wcscpy(szUrl, TEXT("http://<some valid url >/ptg/rm"));
::SendMessage(m_hwndHtml ,DTM_NAVIGATE , 0, (LPARAM)szUrl);
Above code works fine in Windows Mobile 5 and navigates to the specified
URL but same code does not work in Windows Mobile 6 device.
Also above code works fine in Windows Mobile 6 EMULATOR and navigates to
the specified URL but same code does not work in Windows Mobile 6 device .
Pls help