I've gotten into the habit of prefixing my passed in variables with a "p", so I can identify them, for instance:
Code: Select all
Procedure LoadConsignment(pConsignmentID.l)
; pConsignmentID isn't recognised here
Protected ConsignmentID.l
; but this local ConsignmentID is
EndProcedure
Please?
