Page 1 of 1

Posted: Wed Nov 20, 2002 6:56 pm
by BackupUser
Restored from previous forum. Originally posted by freak.

If You name a Procedure like this:

Procedure$ Whatever()
EndProcedure

It won't be displayed in the ProcedureBrowser.

That's all,

Timmo

--------------------------------
Programming today is a race between software engineers striving to build bigger and
better idiot-proof programs and the universe trying to produce bigger and better idiots.

...So far, the universe is winning.

Posted: Thu Nov 21, 2002 12:47 am
by BackupUser
Restored from previous forum. Originally posted by PB.

Until Fred fixes this, just replace $ with .s like so:

Procedure.s Whatever()
EndProcedure

Using .s is probably a better idea anyway because it keeps it in line
with other procedure types (Procedure.l, Procedure.b, etc).

Posted: Fri Nov 29, 2002 12:07 pm
by BackupUser
Restored from previous forum. Originally posted by Hitman.

It either not working on my computer, mine OS is Win2K Build 2195 SP3.....

Well, everyone needs to do something for living.

Posted: Fri Nov 29, 2002 12:45 pm
by BackupUser
Restored from previous forum. Originally posted by freak.
Originally posted by PB

Until Fred fixes this, just replace $ with .s like so:

Procedure.s Whatever()
EndProcedure

Using .s is probably a better idea anyway because it keeps it in line
with other procedure types (Procedure.l, Procedure.b, etc).
I know, and personally, i don't like that $-thing. I just discovered this Bug when i was searching the Editor's own source, and couldn't find a procedure that had the $ in it.

Timo