hi! can you help me..?
i want to limit how many times can user select the every items inside the combobox to 60. how could i do that? pls help me. :)
here's my code in my combobox.. i dont know how to start the codes in limiting.. that' why i dont have codes for that.
strsql = "select * from Schedulings where Sections = '" & ComboBox1.Text & "'"
Dim acscmd As New OleDb.OleDbCommand
acscmd.CommandText = strsql
acscmd.Connection = asconn
acsdr = acscmd.ExecuteReader()
TextBox9.Clear()
TextBox5.Clear()
ListView1.Items.Clear()
acsdr.Read()
While (acsdr.Read())
TextBox9.Text = (acsdr("SectionNames"))
TextBox5.Text = (acsdr("Adviser"))
showmyrecords()
End While
acscmd.Dispose()
acsdr.Close()