Imports Microsoft.VisualBasic
Module Functions
Public Function intError()
Dim e As System.EventArgs
If AscW(e.KeyChar) < 48 Or AscW(e.KeyChar) > 57 Then
e.Handled = True
MessageBox.Show("You can only enter numbers.", " You did wrong, Honey!", MessageBoxButtons.OK, MessageBoxIcon.Hand)
End If
End Function
End Module
使用 e.KeyChar 不起作用,因为它需要 KeyPressEventArgs 并且由于它在此模块中起作用,因此我不能在此处使用 KeyPress 事件。所以我需要一些可以用来代替 KeyChar 的东西。