Public Sub EditInterval_KeyPress(KeyAscii As Integer)
 If ((KeyAscii >= 48) And (KeyAscii <= 57)) Or (KeyAscii = 46) Or (KeyAscii = 8) Then

    Else
  KeyAscii = 0
     Exit Sub

 End If
End Sub

Public Sub EditWarning_Click()

End Sub

Public Sub EditWarning_KeyPress(KeyAscii As Integer)
 If ((KeyAscii >= 48) And (KeyAscii <= 57)) Or (KeyAscii = 46) Or (KeyAscii = 8) Then

    Else
  KeyAscii = 0
     Exit Sub

 End If

End Sub

相关文章:

  • 2021-09-14
  • 2021-06-15
  • 2022-12-23
  • 2022-12-23
  • 2021-11-18
  • 2021-06-25
  • 2021-08-01
  • 2022-12-23
猜你喜欢
  • 2021-12-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-01
相关资源
相似解决方案