Topic: Information

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

Date 10/12/2010

By den

Subject vb.net tutorials

Reply

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

Date 10/12/2010

By den

Subject needed

Reply

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

Reply

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

Reply

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

Date 07/12/2010

By denz

Subject search listbox items

Reply

Sub search()
ListBox1.SelectedItems.Clear()
Dim theList As Long

Dim textToSearch As String

Dim theListText As String

textToSearch = LCase(TextBox1.Text)

For theList = 0 To ListBox1.Items.Count - 1

theListText = LCase(ListBox1.Items.Item(theList))

If theListText = textToSearch Then ListBox1.Text = textToSearch

Next
If ListBox1.SelectedItems.Count = 0 Then
MsgBox("record not found")
End If
End Sub

Date 06/12/2010

By denz

Subject multiple textbox

Reply

hi,

anyone know how to create multiple textbox using for loop in vb.net?

Dim i As Integer
For i = 0 To i <= 10
Dim textBox(i) As TextBox

textBox(i).Multiline = True
textBox(i).ScrollBars = ScrollBars.Vertical
textBox(i).AcceptsReturn = True
textBox(i).AcceptsTab = True
textBox(i).WordWrap = True
textBox(i).Text = "Welcome!"
textBox(i).Visible = True

Me.Controls.Add(textBox(i))

Next

I have write the above coding but it's look not successfully and didn't appear any textbox comeout!!!
So, anyone know please help!

Date 02/12/2010

By denz

Subject tray

Reply

https://www.devarticles.com/c/a/VB.Net/Simple-VB.NET-Notify-Icon-with-Panel-Application/5/

Poll

What is you favorite Programming Languages?

Total votes: 626