Topic: Information

Date 06/01/2011

By den

Subject dotnet tutorial

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

Date 06/01/2011

By den

Subject encryption and decryption in vb.net

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#

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

Date 04/01/2011

By den

Subject connection string of mysql (important)

https://www.connectionstrings.com/mysql

Date 10/12/2010

By den

Subject link for HCI

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

Date 10/12/2010

By den

Subject important tutorials

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

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

Date 10/12/2010

By den

Subject vb.net tutorials

https://www.startvbdotnet.com/forms/form4.aspx

Date 10/12/2010

By den

Subject needed

https://dev.mysql.com/tech-resources/articles/ebonat-load-and-search-mysql-data-using-vbnet-2005.html

https://www.sourcecodester.com/visual-basic-net/how-add-update-delete-record-using-mysql.html

https://www.vbmysql.com/articles/vbnet-mysql-tutorials/the-vbnet-mysql-tutorial-part-3

https://www.codeguru.com/forum/showthread.php?t=479284

Date 10/12/2010

By den

Subject list of backuping database

https://search.mywebsearch.com/mywebsearch/GGmain.jhtml?id=ZVfox000&ptb=8TpdW29CcjzcyquKgq9e.w&psa=&ind=2010062520&ptnrS=ZVfox000&si=&st=kwd&n=77cf1eb8&searchfor=how+to+create+a+backup+file+in+vb.net+using+mysql+database

Date 09/12/2010

By den

Subject link for soft eng project

https://dev.mysql.com/tech-resources/articles/ebonat-exception-error-handling-implementation-in-vbnet-apps.html

Poll

What is you favorite Programming Languages?

Total votes: 697