25-10-13, 11:10 PM
بعد إذن اخي ناجي
تفضل هده الـ Function ضعها في Module
وضع هذا في حدث الـ KeyPress في كل تكست
تفضل هده الـ Function ضعها في Module
PHP كود :
Public Function gWriteOnleNumber(IntKeyAscii As Integer)
If (IntKeyAscii < 48 Or IntKeyAscii > 57) Then
gWriteOnleNumber = 0
Else
gWriteOnleNumber = IntKeyAscii
End If
If IntKeyAscii = 8 Then gWriteOnleNumber = IntKeyAscii
If IntKeyAscii = 13 Then gWriteOnleNumber = IntKeyAscii
If IntKeyAscii = 46 Then gWriteOnleNumber = IntKeyAscii
End Function
PHP كود :
KeyAscii = gWriteOnleNumber(KeyAscii)

