使用下面的代碼時,我得到運行時溢出異常:VB 6 - 溢出異常 - 使用Val()函數的運行時錯誤
我的應用程序在visual basic 6.0中。
Private Sub Command1_Click()
Dim strItn As String
strItn = "1d998" 'when strItn has '1d998' then only error comes
If Val(strItn) = 0 Then
MsgBox ("test1")
Else
MsgBox ("else")
End If
End Sub
謝謝@GSerg。使用Val()從該字符串值獲取數值的任何方法? –
該字符串的數字值有998個零。你打算如何處理它,你將在哪裏存儲它? – GSerg
我明白了。謝謝@GSerg。 –