LISTBOX AUTOSCROLL
alguem tem ideia de como fazer a barra de rolagem de um listbox ficar sempre pra baixo, sempre exibindo os ultimos itens da lista. alguem sabe se é possivel fazer? sei que tem como fazer com textbox...
Me.ListBox1.SetSelected(Me.ListBox1.Items.Count - 1, True)
Cannot call this method when SelectionMode is SelectionMode.NONE.
precisava de um metodo pra descer a barra mesmo não pra selecionar o ultimo item
ninguem?
[txt-size=6][txt-color=#007100][ô]#### inÃcio do código[/txt-color]
[txt-color=#0000f0]Dim[/txt-color] UltimoItem [txt-color=#0000f0]As Integer[/txt-color] = ListBox1.Items.Count - 1
ListBox1.SetSelected(UltimoItem, [txt-color=#0000f0]True[/txt-color])
ListBox1.ClearSelected()
[txt-color=#007100][ô]#### FIM DO CÓDIGO[/txt-color][/txt-size]
[txt-color=#0000f0]Dim[/txt-color] UltimoItem [txt-color=#0000f0]As Integer[/txt-color] = ListBox1.Items.Count - 1
ListBox1.SetSelected(UltimoItem, [txt-color=#0000f0]True[/txt-color])
ListBox1.ClearSelected()
[txt-color=#007100][ô]#### FIM DO CÓDIGO[/txt-color][/txt-size]
Exemplo de preencher e selecionar e sempre exibir a ultima linha...
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
For i As Integer = 0 To 1500
ListBox1.SelectedIndex = ListBox1.Items.Add(i)
Application.DoEvents()
System.Threading.Thread.Sleep(200)
Next
End Sub
Tópico encerrado , respostas não são mais permitidas