Android Question HowTo add tooltip to subs in a class module?

SoyEli

Active Member
Licensed User
Longtime User
Hello:
How can I add a tooltip to subs in a class module
so when I'm typing it will show up as a tooltip ?

Thank you :)
 

SoyEli

Active Member
Licensed User
Longtime User
Please elaborate, Comments like:

sub Test(I as string)
'Comments

or

sub Test(I as string, 'Comments)

???
 
Last edited:
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
B4X:
' Do comments on "subinclass" here
' bla bla
Sub subinclass
End Sub

' Do comments on "mysubinclass2" here
' bla bla
Sub mysubinclass2
End Sub
 
Upvote 0
Top