Davey,
Build a table of names and addresses, then lookup VLOOKUP in the help. This
should show you how to retrieve the address, then just populate a textbox
with it. As an example, if name goes in Textbox1, address in TextBox2,3, 4
and the names and addresses are in A1
10 in Sheet2, then use this event
code
Private Sub TextBox1_Exit(ByVal Cancel As MSForms.ReturnBoolean)
Dim sName
On Error GoTo not_found
TextBox2.Text = Application.VLookup(TextBox1.Text,
Worksheets("Sheet2").Range("A1
10"), 2, False)
TextBox3.Text = Application.VLookup(TextBox1.Text,
Worksheets("Sheet2").Range("A1
10"), 3, False)
TextBox4.Text = Application.VLookup(TextBox1.Text,
Worksheets("Sheet2").Range("A1
10"), 4, False)
Exit Sub
not_found:
MsgBox "Problem in lookup", vbExclamation
End Sub