Jump to content
Fórum Script Brasil
  • 0

Gerador De Senhas (Resolvido)


OSJunior

Question

Olá, gostaria de saber, se é possível escolher kuantos números o usuário quer com ke a senha seja formada.

function GeraSenha (aQuant: integer): string;
var
  i: integer;
const
  str = '1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
begin
  for i:= 1 to aQuant do
  begin
    Randomize;
    Result := Result + str[Random(Length(str))+1];
  end;
end;
Para testar, adicione no formulário um Button e um Edit. No OnClick do botão, digite o seguinte código:
Edit1.Text := GeraSenha(5); 

user posted image

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Vlw, Progr'amador, quando eu te falo que você manja, você num acredita.

Pro pessoal que quiser tentar, tem que substituir os Edits no código que o Progr'amador deu:

Edit2.Text := GeraSenha(StrToInt(Edit1.text));

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...