注册 登录
编程论坛 VB6论坛

我在文本框中不管输入什么都会跳出msgbox,求解哦?!?!我最近想试试vs2012感觉好不习惯 - -

Onesaber 发布于 2013-03-31 10:14, 522 次点击
If TextBox3.Text <> "*" Or TextBox3.Text <> "/" Or TextBox3.Text <> "+" Or TextBox3.Text <> "-" Then
            MsgBox("请在第三个框中输入运算符!")
            TextBox3.Text = ""
            TextBox3.Focus()
3 回复
#2
lowxiong2013-03-31 10:36
基本逻辑错误,将or改成and。
其实用下列代码可完成
        If InStr("+-*/", TextBox3.Text) = 0 Then
            MsgBox("请在第三个框中输入运算符!")
            TextBox3.Text = ""
            TextBox3.Focus()
        End If
#3
Artless2013-03-31 10:42
以下是引用Onesaber在2013-3-31 10:14:33的发言:

If TextBox3.Text <> "*" Or TextBox3.Text <> "/" Or TextBox3.Text <> "+" Or TextBox3.Text <> "-" Then
            MsgBox("请在第三个框中输入运算符!")
            TextBox3.Text = ""
            TextBox3.Focus()
这代码不是你写的?
我在文本框中不管输入什么都会跳出msgbox
2L
我最近想试试vs2012感觉好不习惯 - -
终究不一样。

[ 本帖最后由 Artless 于 2013-3-31 10:44 编辑 ]
#4
Onesaber2013-03-31 10:45
回复 3楼 Artless
是我写的- -。突然感觉vb6.0略好用啊- -
1