Announcement

Collapse
No announcement yet.

Can't find entry point. - Error from VB

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • RyanCross
    replied
    n/m got it

    ------------------
    Thank you,
    Ryan M. Cross
    Webmaster FlexiFish Inc. UK
    Likuid Creations Inc.

    Leave a comment:


  • Don Dickinson
    replied
    This almost always means that you forgot to alias the function name or otherwise mis-declared it.

    E.G.
    Code:
    'PBFunction
    Function myfunction Alias "myfunction" EXPORT as LONG
      MsgBox "This function belongs to me"
    End Function
    
    'VB declaration
    Declare Function myfunction Lib "mydll.dll" as long
    Best Regards,
    Don

    ------------------

    Leave a comment:


  • RyanCross
    started a topic Can't find entry point. - Error from VB

    Can't find entry point. - Error from VB

    I was testing the example DLLs for VB made in PB. Like the AddOne.dll and it says "Can't find entry point". Why? can someone help me out here.

    ------------------
    Thank you,
    Ryan M. Cross
    Webmaster FlexiFish Inc. UK
    Likuid Creations Inc.
Working...
X