Hi, i need help,
I have a userform that only uses textbox
i have this code:
Code
Private Sub ListBox1_Click()
Dim say As Long, a As Byte
For a = 0 To 11
Controls("textbox" & a + 1) = ListBox1.column(a)
Next
Sheets("Dados").Range("A:A").Find(ListBox1.Text).Activate
say = ActiveCell.row
Sheets("Dados").Range("A" & say & ":L" & say).Select
TextBox150 = ListBox1.ListIndex + 1
End Sub
Display More
It works fine, but I now need to use the userform combobox, can someone help me, thx very much.
greetings