while writing a wrapper for MsgboxAsync, i'm getting the unknown type error
what's the correct way to write such a wrapper?
the intended behavior should be logging message boxes as they are presented to the user (and hopefully logging the answer for MsgboxAsync2 also, but that seems to be a whole different matter)
B4X:
Public Sub ShowMsgboxAsync(message As CharSequence, title As CharSequence) As Object
Log(message)
Return xui.MsgboxAsync(message, title)
End Sub
the intended behavior should be logging message boxes as they are presented to the user (and hopefully logging the answer for MsgboxAsync2 also, but that seems to be a whole different matter)