Results 1 to 2 of 2

Thread: Temp meter scale rotate ?

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Mar 2006
    Posts
    282

    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 ?
    Attached Files Attached Files
    Last edited by VB Client/Server; May 13th, 2011 at 11:04 AM.

  2. #2
    Addicted Member BlueRose's Avatar
    Join Date
    Jan 2002
    Location
    ISTANBUL
    Posts
    245

    Re: Temp meter scale rotate ?

    it seems there is one UDT in your code, it is POINTAPI type
    vb Code:
    1. Private Type PointAPI
    2.     x As Long
    3.     y As Long
    4. End Type

    you must also add this to your other project
    You can do while you think that you can do

    If you think my answer solve your question, please rate it.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width