-
I was recently trying to find out how to dial numbers through vb5. i found this site and immediately tried it. To my disappointment when i placed the functions in a .Bas its says for the Private Declare Function 'User define type not defined' what does this mean and how do I fix it.
-
'User define type not defined'
means there is a certain user 'Type' which is not defined.
Eg. of a Type would be.
Public Type invitro
x as integer
y as integer
End type
So later u can assign values as in:
invitro.x = 1
invitro.y = 2
I wouldent know how to fix it unless I got the bas file.
:cool: