Does anyone know how to include tips in sub procedures. ie
Public Sub MySub(myInt as integer)
End Sub
Dim x as integer
MySub(x)
What I am trying to do is include the tips in the procedure so that it's easier for other users to understand what they need to put in.
e.g
'MySub(...x as Integer, Used for bla bla bla)
I think its something to do with the System.ComponentModel
i.e. Public Sub MySub(<Description("bla bla bla"
By val x as integer)
But this does not seem to work... Does anyone know what to do about it?
Public Sub MySub(myInt as integer)
End Sub
Dim x as integer
MySub(x)
What I am trying to do is include the tips in the procedure so that it's easier for other users to understand what they need to put in.
e.g
'MySub(...x as Integer, Used for bla bla bla)
I think its something to do with the System.ComponentModel
i.e. Public Sub MySub(<Description("bla bla bla"
But this does not seem to work... Does anyone know what to do about it?