Re: Question about function "HTMLDocument_write"

2008-03-13 Thread Ivan Sinitsin
> > What do you mean by hyperlinks don't work? > I have such code which create html page: htmlDoc2->lpVtbl->open(htmlDoc2, L"html/txt", vnull, vnull, vnull, &pdisp); bstr =SysAllocString(L"Simple text"); if ((pVar->bstrVal = bstr)) { htmlDoc2->lpVtbl->write(htmlDoc2, sfArray); } SysFreeString

Re: Question about function "HTMLDocument_write"

2008-03-12 Thread Jacek Caban
Ivan Sinitsin wrote: > On Monday the patch realizing this function has been accepted. It works > perfectly, but hyperlinks do not work. > What do you mean by hyperlinks don't work? > If I makes this function that way: > > [...] > hyperlinks works good. > > Why so occurs? > As I've explain

Question about function "HTMLDocument_write"

2008-03-11 Thread Ivan Sinitsin
On Monday the patch realizing this function has been accepted. It works perfectly, but hyperlinks do not work. If I makes this function that way: static HRESULT WINAPI HTMLDocument_write(IHTMLDocument2 *iface, SAFEARRAY *psarray) { HRESULT hres; VARIANT *pvar; IHTMLElement *pbody;