I've just discovered today that you can compile projects to libraries. DOH!
I'm playing with it but I don't understand how to send an event.
If I have a class like below in a library how do I send an event back.
I'm playing with it but I don't understand how to send an event.
If I have a class like below in a library how do I send an event back.
B4X:
Sub Class_Globals
End Sub
'Initializes the object. You can add parameters to this method if needed.
Public Sub Initialize
End Sub
public Sub TestEvent
'send an event
End Sub