SoyEli Active Member Licensed User Longtime User Sep 24, 2014 #1 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
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
thedesolatesoul Expert Licensed User Longtime User Sep 24, 2014 #2 Add comments before the sub definition. Upvote 0
SoyEli Active Member Licensed User Longtime User Sep 24, 2014 #3 Please elaborate, Comments like: sub Test(I as string) 'Comments or sub Test(I as string, 'Comments) ??? Last edited: Sep 24, 2014 Upvote 0
Please elaborate, Comments like: sub Test(I as string) 'Comments or sub Test(I as string, 'Comments) ???
DonManfred Expert Licensed User Longtime User Sep 24, 2014 #4 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
B4X: ' Do comments on "subinclass" here ' bla bla Sub subinclass End Sub ' Do comments on "mysubinclass2" here ' bla bla Sub mysubinclass2 End Sub