DelphiEncryptionCompendium
DelphiEncryptionCompendium copied to clipboard
How can i use DECRandom.pas ?
Hail, how can i use DECRandom to get a random number out of 1000 for example?
`uses DECRandom
procedure TForm1.Button1Click(Sender: TObject); begin //???????? memo1.lines.add(inttostr(decrandom(1000))); //??? end; `