ObjectFromLresult_(
Posted: Thu Nov 16, 2006 7:54 pm
If this were brought into the fold, people using objects could avoid doing:
all the time as it's a very common requirement in using interfaces.
Code: Select all
OleAcc = OpenLibrary(#PB_Any, "OLEACC.DLL")
If OleAcc And GetFunction(OleAcc, "ObjectFromLresult")
CallFunction(OleAcc, "ObjectFromLresult", MessageResult, ?IID_IHTMLDocument2, 0, @HtmlDoc)
CloseLibrary(OleAcc)
EndIf