Created
September 9, 2016 07:11
-
-
Save jerstlouis/9d11f17bca24ab2185d2662230945922 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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