- 06-03 16:25
- Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; Media Center PC 5.0; .NET CLR 3.5.21022; CIBA; MAXTHON 2.0)
-
xcq
机长
头衔 --
注册 07-04-02
来自 sz
-
数字输入框!
The code below restricts user input to the characters 1234567890 - no decimal points/commas can be entered:
Private Sub TxtX_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TxtX.KeyPress, TxtY.KeyPress
e.Handled = True
If Char.IsNumber(e.KeyChar.ToString) Then
e.Handled = False
End If
End Sub 广告位招租,广告代号:BbsGGADtop












