Ciao prova così:
codice:
Public Sub txtbox_Change()
  If IsNumeric(txtbox.Text) Then
   'quello che vuoi che faccia
      Else:
        MsgBox "Casella di testo txtbox: INSERIRE SOLO VALORI NUMERICI!", vbCritical, "nomedeltuoprogramma"
  txtbox.SetFocus
  Exit Sub
 End If
End Sub