H o l a :
Te anexo la macro para insertar imágenes.
Las imágenes las puedes poner en una carpeta, modifica la macro en esta línea para poner el nombre de dicha carpeta:
ruta = "C:\Trabajo\Varios\"
Los nombres de las imágenes deberán ser igual al código del cliente, por ejemplo:
1111.jpg
1111.jpeg
1111.gif
Private Sub ComboBox1_Change()
'Por.Dante Amor
    limpia
    ruta = "C:\Trabajo\Varios\"
    If ComboBox1 = "" Then Exit Sub
    If ComboBox1.ListIndex = -1 Then Exit Sub
    f = ComboBox1.ListIndex + 2
    arch = Dir(ruta & ComboBox1 & ".*")
    If arch <> "" Then
        Image1.Picture = LoadPicture(ruta & arch)
    End If
    Set h2 = Sheets("USUARIOS")
    Set h3 = Sheets("REGISTRO DE ASISTENCIA")
    cuantos = Application.CountIf(h3.Columns("B"), ComboBox1)
    TextBox3 = h2.Cells(f, "B")
    TextBox4 = h2.Cells(f, "C")
    TextBox5 = h2.Cells(f, "I")
    TextBox6 = h2.Cells(f, "G")
    TextBox7 = h2.Cells(f, "H")
    TextBox9 = h2.Cells(f, "K")
    TextBox10 = cuantos
End Sub
'
Sub limpia()
'Por.Dante Amor
    TextBox3 = ""
    TextBox4 = ""
    TextBox5 = ""
    TextBox6 = ""
    TextBox7 = ""
    TextBox9 = ""
    TextBox10 = ""
    Image1.Picture = Nothing
End Sub