Topic: Information

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

Date 04/01/2011

By den

Subject connection string of mysql (important)

Reply

https://www.connectionstrings.com/mysql

Date 10/12/2010

By den

Subject link for HCI

Reply

https://javascript-array.com/scripts/simple_drop_down_menu/

Date 10/12/2010

By den

Subject important tutorials

Reply

https://dotnet.tekyt.info/?p=24

https://stackoverflow.com/questions/1291708/showing-login-form-before-main-form-in-vb-net

Poll

What is you favorite Programming Languages?

Total votes: 547