VS2008 VisualBasic - numeri decimali

Ciao FORUM,
come è possibile indicare, nella routine sottostante, a suo tempo indicatami da Boolean,
che le cifre decimali devono esse solo "due"?

Grazie in anticipo, e buon 2009.


************************************************** **********
Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
Dim bInvalid As Boolean
If IsNumeric(e.KeyChar) Then
bInvalid = False
Else
Select Case Asc(e.KeyChar)
Case 44, 46
e.KeyChar = ChrW(46)
If TextBox1.Text.IndexOf(e.KeyChar) >= 0 Then
bInvalid = True
End If
Case 8
bInvalid = False
Case Else
bInvalid = True
End Select
End If
e.Handled = bInvalid
End Sub
************************************************** **********