Creating additional libraries

Nycran

Member
Licensed User
Longtime User
Hi all, just wondering what the correct procedure is for creating a new dll library.

So far I've created my own test dll in VB.Net, added the dll to my Basic4PPC project, and created an instance of that object in the basic4ppc app start event. No error there.

However, when trying to get a result from a function in the library, I cannot see the function name in the popup options in the Basic4PPC IDE. Here's my function:

Public Function getV() As String
Return Me.v
End Function

I've also tried creating a class property, like this:

Public Readonly Property _V() As String
Get
Return Me.v
End Get
End Property

Am I on the right track? How do I return a value from the library?

Thanks!
Andrew.
 
Top