Skip to content

Instantly share code, notes, and snippets.

@an01f01
Last active June 23, 2023 19:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save an01f01/430c5e223765ff3d2905c9fa52fb1284 to your computer and use it in GitHub Desktop.
Save an01f01/430c5e223765ff3d2905c9fa52fb1284 to your computer and use it in GitHub Desktop.
procedure TFrmMain.FormCreate(Sender: TObject);
begin
inherited;
{ TODO: Initialized objects }
end;
procedure TFrmMain.BtnSaveClick(Sender: TObject);
begin
inherited;
{ TODO: Encrypt and save json file }
end;
procedure TFrmMain.BtnLoadClick(Sender: TObject);
begin
inherited;
{ TODO: Load encrypted file }
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment