Announcement

Collapse
No announcement yet.

Win 9.x - Win2K problem

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

  • Win 9.x - Win2K problem

    I found out the hard way. Hope it helps someone else.

    The following code works under Win9.x but not under Win2K.
    (Win2K comes up with the message that it can't find MyLibrary.dll)

    Code:
    Declare Function MyFunction Lib "MyLibrary" Alias _
                        "_MyFunction" () As Long
    In contrast the following works under both Win9.x and Win2k

    Code:
    Declare Function MyFunction Lib "MyLibrary.dll" Alias _
                        "_MyFunction" () As Long
    Maybe I should have known all along.

    Bern

    ------------------
    Bern


    http://www.insighttrader.com.au

  • #2
    bernard -
    see

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

    Comment


    • #3
      Semen,

      Thanks. If I had remained a regular contributor I should have in fact known.

      Thanks also for your prolific contributions in other areas of PBDLL. I find them invaluable.

      Regards,

      Bern

      ------------------
      Bern


      http://www.insighttrader.com.au

      Comment

      Working...
      X