Ivannightcrawler eso es muy sencillo Fijate
para el del 101
if text1.text = < 100 then
msgbox "No se aceptan # mayores de 100"
text1.Text = ""
end if
o tambien text1.MaxLength = 3
para el de enter:
Private Sub txtTexto_KeyPress(KeyAscii As Integer)
'esta sencilla función nos permite ke al dar enter se manden los datos
'determina dentro de la caja "txtTexto"ke tecla se pulsa, si la tecla es KeyAscii 13 (Enter), se mandan los datos
If KeyAscii = 13 and text1.MaxLength = 3 then
y haces la funcion aki lo keres ke haga
End If
espero te sirva