Announcement

Collapse
No announcement yet.

Can't find entry point. - Error from VB

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

  • 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.
    Thank you,
    Ryan M. Cross

  • #2
    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

    ------------------
    Don Dickinson
    www.greatwebdivide.com

    Comment


    • #3
      n/m got it

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

      Comment

      Working...
      X