Modified it slightly its working now

VB Code:
  1. Dim tbox As TextBox = DirectCast(sender, TextBox)
  2.         If Regex.IsMatch(tbox.Text, "^([a-zA-Z0-9.]+)/([0-9]{2,2})$") = True Then
  3.         Else
  4.             MsgBox("Not valid String")
  5.         End If

Thanks
Jorge