https://www.connectionstrings.com/mysql
Topic: Information
———
https://javascript-array.com/scripts/simple_drop_down_menu/
———
https://dotnet.tekyt.info/?p=24
https://stackoverflow.com/questions/1291708/showing-login-form-before-main-form-in-vb-net
———
https://www.startvbdotnet.com/forms/form4.aspx
———
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
———
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
———
https://dev.mysql.com/tech-resources/articles/ebonat-exception-error-handling-implementation-in-vbnet-apps.html
———
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
———
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!
———
https://www.devarticles.com/c/a/VB.Net/Simple-VB.NET-Notify-Icon-with-Panel-Application/5/