Hi
I am trying to Call a ATL COM in VB that takes unsigned int as a
parameter.
Here is my code through which I tried to Call a COM.
*****************************************************************************************
*I already add a refrence of the DLL
Dim obj As New UNCOMLib.temp
Private Sub Command1_Click()
Dim a As Long
Dim b As Long
obj.Add a, b 'Add is the method name that takes unsigned int
End Sub
****************************************************************************************
When I used this code it gives --
Compile error:
Function or interface marked as restricted, or the function uses an
Automation type not supported in Visual Basic
Archived from group: microsoft>public>vb>ole