| DelphiRandom Function | 
Unit
QESBPCSRandom
Declaration
Function DelphiRandom: Extended;
Description
Remember to use Randomize if you don't want repeatable sequences. Implementation
 
| function DelphiRandom: Extended;
begin
     Result := Random;
End; | 
|  |