a 10 line encryption/decryption program
This is a encrypt/decrypt program thats only 10 lines long!!! all it uses is 2 simple fonts to encrypt, times new romand for the text and Money for the encrypted text! please tell me if you like it:)
AI
KI-Zusammenfassung: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
Quellcode
'add 2 command buttons 'add 1 text box 'coded by the other matt 'please give me mention if you ever decide to use this in one of you apps:) Private Sub Command1_Click() If Text1 = "" Then MsgBox "YOU MUST ENTER SOME TEXT!" Command1.Caption = "Encrypt" Text1.Font = "Money" End Sub Private Sub Command2_Click() If Text1 = "" Then MsgBox "YOU MUST ENTER SOME TEXT!" Command2.Caption = "Decrypt" Text1.Font = "Times New Roman" End Sub
Originalkommentare (3)
Wiederhergestellt von der Wayback Machine