IDE Status Bar & User-Defined Procedure Comment?

Just starting out? Need help? Post your questions and find answers here.
Hot Dog Hero
New User
New User
Posts: 4
Joined: Sun Mar 07, 2010 12:13 am

IDE Status Bar & User-Defined Procedure Comment?

Post by Hot Dog Hero »

The IDE status bar shows the procedure definition (i.e. name and arguments) and a comment for PB-defined procedures.

The IDE status bar only shows the procedure definition for a user-defined procedure. Can the IDE status bar display a comment for a user-defined procedure? If so, how would you declare the comment in the code?
User avatar
Zebuddi123
Enthusiast
Enthusiast
Posts: 796
Joined: Wed Feb 01, 2012 3:30 pm
Location: Nottinghamshire UK
Contact:

Re: IDE Status Bar & User-Defined Procedure Comment?

Post by Zebuddi123 »

Do you mean

Code: Select all

WriteStringN(#File, Tex$[,Flags])-Write a string to the specified file and add the end of line character
with a procedure from an pb include file or user defined procedure in the open project, file or open files commenting after ie

Code: Select all

procedure test(arg1,arg2);- arg1=!!! arg2=??? 
does not show the comment.

when procedures are used with comments as above in a lib fle created with tailbite etc then they are valid and will show up

to be honest i had not noticed this before

Zebuddi. :shock:
malleo, caput, bang. Ego, comprehendunt in tempore
Hot Dog Hero
New User
New User
Posts: 4
Joined: Sun Mar 07, 2010 12:13 am

Re: IDE Status Bar & User-Defined Procedure Comment?

Post by Hot Dog Hero »

Zebuddi123, Yes and thanks for the information about Tailbite.
Post Reply