1 Attachment(s)
Temp meter scale rotate ?
I've attach here source code, this one works ok, but when I add this same code
to other project I got error in function, please check.
This is my error when add it to other project:
Code:
Private Function DrawStdPictureRot(ByVal inDC As Long, ByVal inX As Long, _
ByVal inY As Long, ByVal inAngle As Single, ByRef inPicture As StdPicture) As Long
User-defined type not defined ?
Re: Temp meter scale rotate ?
it seems there is one UDT in your code, it is POINTAPI type
vb Code:
Private Type PointAPI
x As Long
y As Long
End Type
you must also add this to your other project