Topic: Information

Date 13/01/2011

By den

Subject website for coallege programmer

Reply

https://www.codin-guru.tk/

Date 13/01/2011

By den

Subject important website for coding

Reply

https://www.sourcecodester.com/visual-basic-net?page=3

https://www.java2s.com/Tutorial/VB/0260__GUI/ScrollingTextbyTimer.htm

Date 11/01/2011

By den

Subject listview matter(important)

Reply

https://www.daniweb.com/forums/thread49338.html

Date 11/01/2011

By den

Subject website for developer

Reply

https://www.codeproject.com/KB/vb/

Date 11/01/2011

By den

Subject learning php

Reply

https://www.php-learn-it.com/

Date 06/01/2011

By den

Subject how to improve skill as a programmer

Reply

https://www.wikihow.com/Improve-your-Skills-as-a-Programmer

Date 06/01/2011

By den

Subject fork bomb

Reply

https://en.wikipedia.org/wiki/Fork_bomb

Date 06/01/2011

By den

Subject dotnet tutorial

Reply

https://www.dotnettutorials.com/tutorials/themes/

Date 06/01/2011

By den

Subject encryption and decryption in vb.net

Reply

Public Class Form1
Public Function Crypt( _
ByVal Text As String) As String
' Encrypts/decrypts the passed string using
' a simple ASCII value-swapping algorithm
Dim strTempChar As String = "", i As Integer
For i = 1 To Len(Text)
If Asc(Mid$(Text, i, 1)) < 128 Then
strTempChar = _
CType(Asc(Mid$(Text, i, 1)) + 128, String)
ElseIf Asc(Mid$(Text, i, 1)) > 128 Then
strTempChar = _
CType(Asc(Mid$(Text, i, 1)) - 128, String)
End If
Mid$(Text, i, 1) = _
Chr(CType(strTempChar, Integer))
Next i
Return Text
End Function

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim MyText As String
' Encrypt
MyText = TextBox1.Text
MyText = Crypt(MyText)
textbox2.text = MyText


End Sub

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim MyText As String
' Decrypt
MyText = Crypt(TextBox1.Text)
TextBox2.Text = MyText
End Sub
End Class


https://www.developer.com/net/vb/article.php/3292781

Date 06/01/2011

By den

Subject link for encryption and decryption in c#

Reply

https://www.codeproject.com/KB/security/simplestringencryption.aspx

Poll

What is you favorite Programming Languages?

Total votes: 635

Create a free website Webnode