Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created September 9, 2016 07:11
Show Gist options
  • Save jerstlouis/9d11f17bca24ab2185d2662230945922 to your computer and use it in GitHub Desktop.
Save jerstlouis/9d11f17bca24ab2185d2662230945922 to your computer and use it in GitHub Desktop.
import "ecere"
String generatePassword(int length)
{
String pass = new char[length+1];
int i;
for(i = 0; i < length; i++)
pass[i] = (char)GetRandom('A', 'Z');
pass[i] = 0;
return pass;
}
class Form1 : Window
{
caption = $"Form1";
background = formColor;
borderStyle = sizable;
hasMaximize = true;
hasMinimize = true;
hasClose = true;
clientSize = { 632, 438 };
Button button1
{
this, caption = $"button1", position = { 248, 152 };
bool NotifyClicked(Button button, int x, int y, Modifiers mods)
{
String pass = generatePassword(20);
PrintLn(pass);
delete pass;
return true;
}
};
}
Form1 form1 { };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment