I'm Baaaack. Looking into threads and wondering why help page on it shows asterisk prefix on parameter name, but thread.pb does not have the asterisk. Must be something I'm missing here.
The help page shows this:
Code: Select all
Procedure YourProcedure(*Value) ; The variable '*Value' will contain 23
EndProcedure
CreateThread(@YourProcedure(), 23)
Has asterisk. This asterisk has no special meaning? Just part of the variable name?
The thread.pb shows this:
Code: Select all
Procedure AlertThread(Parameter)
Repeat
Debug "Alert !"
Delay(3000)
ForEver
EndProcedure
CreateThread(@AlertThread(), 154)
No asterisk. So, it does not appear to be required as indicated in the help page.
Can someone explain this?
- - - - - - - - - - - - - - - -
Randy
I *
never* claimed to be a programmer.
Nothing is faster, more stable, or easier to maintain than code that doesn’t exist.
