Posts

Encrypt Me!

Introduction Encrypt Me! is a Simple Cryptography Application Which uses Ceaser Cipher Algorithm to Encrypt and Decrypt the Message. Screenshots   Source Code Splash Screen Public Class Form1     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load         Timer1.Start()     End Sub     Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick         ProgressBar1.Increment(1)         Label2.Text = ProgressBar1.Value         If ProgressBar1.Value = 100 Then             Home.Show()             Me.Close()         End If     End Sub End Class Main Code Public Class Home     Private Sub Button1_Click(ByVal sende...
Recent posts