StatusBar Context Sensitive Help to include user comments
Posted: Fri Dec 17, 2010 4:33 pm
Please allow the statusbar context help to show the procedure's return type and trailing comment if exists.
Statusbar for Built-in procedure:
Str(Value) - Convert a signed integer number INTO a string.
Statusbar for user procedure:
MyAdd.d(x.d, y.d) - add x to y and return sum in double
Statusbar for Built-in procedure:
Str(Value) - Convert a signed integer number INTO a string.
Code: Select all
Procedure.d MyAdd(x.d, y.d) ; add x to y and return sum in double
ProcedureReturn x+y
EndProcedure
MyAdd.d(x.d, y.d) - add x to y and return sum in double