in asp i write:
<%
Set obj=Server.CreateObject("MyWebObj.WO1.1")
obj.GetPipeName i,x
%>
and i get error
Error Type:
Microsoft VBScript runtime (0x800A000D)
Type mismatch: 'GetName'
HRESULT GetName([in] int Index, [out, retval] BSTR* Val);
In this case the correct ASP syntax is
x = obj.GetName(i)
--
With best wishes,
Igor Tandetnik
"For every complex problem, there is a solution that is simple, neat,
and wrong." H.L. Mencken
"ofer" <ofer...@allot.com> wrote in message
news:84e1563a.02081...@posting.google.com...
or
HRESULT GetName([in] int Index, [out] BSTR* Val,[out, retval] BSTR *Val2);
"Igor Tandetnik" <itand...@whenu.com> wrote in message news:<e04wPDIRCHA.4380@tkmsftngp08>...