Advertisement
2_2002-2004 Security #127366

Tomb Encryption

This program is my attempt at encryption. It's fairly secure, I think. It's definitely not a professional job, but it'll do. I devised a funky key representation/generation scheme. Check it out! Read the documentation for much more detail on how to operate it. (Tomb.txt)

AI

AI Summary: 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.

Source Code
original-source
Upload
I'm beginner in VB.Net, just to share some tips
Let says you have 2 form, Form_1 and Form_2. Inside Form_1 you have 1 command button called command_1. if you show Form_2 when press command_1. in VB6 just can use <br><br>
Form_2.show<br><br>
But how to do it in vb.net?<br>
Private Sub command_1_Click(ByVal Sender As Object, ByVal e as EventArgs) Handles command_1.Click <br>
Dim frm As New Form_2() <br>
frm.Show()<br>
End Sub<br>
<br>
<br>
but if you don't need to show new form2 every time you press command_1. just put your declaration outside your sub. like this<br><br>
Dim frm As New Form_2() <br>
Private Sub command_1_Click(ByVal Sender As Object, ByVal e as EventArgs) Handles command_1.Click <br>
frm.Show()<br>
End Sub<br>
Original Comments (3)
Recovered from Wayback Machine