This document was uploaded by user and they confirmed that they have the permission to share
it. If you are author or own the copyright of this book, please report to us by using this DMCA
report form. Report DMCA
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick Hora.Text = TimeOfDay selecciona("select texto from mensajes where emisor= '" & Label1.Text & "'and receptor='" & ComboBox1.Text & "'or emisor='" & ComboBox1.Text & "'and receptor='" & Label1.Text & "'order by id_Mensaje desc") ListBox1.Items.Clear() While leer.Read ListBox1.Items.Add(leer(0).ToString) End While leer.Close() End Sub