注册 登录
编程论坛 PowerBuilder

急救!哪位大虾帮我看看哪里错了!

glitter 发布于 2010-11-02 12:49, 658 次点击
If sle_user.Text="" then
    MessageBox("提示","请输入用户名!")
Else
    If sle_user.Text="lianzheng" and sle_password.Text="820729"
       MessageBox("欢迎使用",sle_user.Text+",您好"
        open(w_main)
        close(parent)
    Else
        MessageBox("提示","密码错误,请重新输入!")
    End If
End If
2 回复
#2
chenhao198602010-11-03 11:34
If sle_user.Text="lianzheng" and sle_password.Text="820729"
缺少then
#3
leonjuno2011-06-01 12:34
明显缺少一个右括号!!!
MessageBox("欢迎使用",sle_user.Text+",您好"
1