回复 10楼 yuma
谢谢啊,今天找人下载下,我看下,程序保存的有问题,和我保存时的状态不一样,难道是电脑系统版本不同所致?vb都是6.0的
程序代码:
Private Sub Text1_KeyPress(KeyAscii As Integer) If KeyAscii > 57 Or KeyAscii < 48 and KeyAscii<>8 Then KeyAscii = 0 End Sub Private Sub Text2_KeyPress(KeyAscii As Integer) If KeyAscii > 57 Or KeyAscii < 48 and KeyAscii<>8 Then KeyAscii = 0 End Sub …………
这个比较完美,允许使用BackSpace键。