Boa noite
Estou a tentar que uma combobox preencha oito textbox contudo não estou a conseguir alguém me pode ajudar? Agradeço, estou a utilizar os seguintes procedimentos:
Private Sub UserForm_Initialize()
Dim linha As Integer
linha = 2
Do Until Folha3.Range("b" & linha).Value = ""
cbxnome.AddItem Folha3.Range("B" & linha).Value
cbxnome.AddItem Folha3.Range("C" & linha).Value
cbxnome.AddItem Folha3.Range("D" & linha).Value
cbxnome.AddItem Folha3.Range("E" & linha).Value
cbxnome.AddItem Folha3.Range("F" & linha).Value
cbxnome.AddItem Folha3.Range("G" & linha).Value
cbxnome.AddItem Folha3.Range("H" & linha).Value
cbxnome.AddItem Folha3.Range("I" & linha).Value
cbxnome.AddItem Folha3.Range("J" & linha).Value
linha = linha + 1
Loop
End Sub
Private Sub cbxnome_Change()
txtmorada.Value = cbxnome.List(cbxnome.ListIndex, 2)
txtnumero.Value = cbxnome.List(cbxnome.ListIndex, 3)
txtcodpostal.Value = cbxnome.List(cbxnome.ListIndex, 4)
txttelefone.Value = cbxnome.List(cbxnome.ListIndex, 5)
txttelemovel.Value = cbxnome.List(cbxnome.ListIndex, 6)
txtemail.Value = cbxnome.List(cbxnome.ListIndex, 7)
txtcidadao.Value = cbxnome.List(cbxnome.ListIndex, 8)
txtcontribuinte.Value = cbxnome.List(cbxnome.ListIndex, 9)
End Sub
Grato desde já
Att.,
RM
Postado : 28/10/2016 5:52 pm