Tech Support > Microsoft Windows > Development Resources > Navigate
Navigate
Posted by Marco on June 21st, 2004


I have a big problem! I use C++Builder 6 and when I click a button I would
like navigate and find and selected a word.

Example Navigate in www.yahoo.it and find and selected a word "Iraq".
Are there a component for this operation. I try to used a API and my source
are:

Shdocvw_tlb::IShellUIHelper *Pippo = NULL;
HRESULT hr;

hr = CoCreateInstance(CLSID_ShellUIHelper, NULL, CLSCTX_INPROC_SERVER,
Shdocvw_tlb::IID_IShellUIHelper, (LPVOID*)&Pippo);

if (SUCCEEDED(hr))
hr = Pippo->NavigateAndFind(L"http://www.google.com", L"Fortunato"
,TVariant("Fortunato"));

but this isn't work!

Thanks for help



Similar Posts