The help page shows this:
Code: Select all
Procedure YourProcedure(*Value) ; The variable '*Value' will contain 23
EndProcedure
CreateThread(@YourProcedure(), 23)
The thread.pb shows this:
Code: Select all
Procedure AlertThread(Parameter)
Repeat
Debug "Alert !"
Delay(3000)
ForEver
EndProcedure
CreateThread(@AlertThread(), 154)
Can someone explain this?