发布网友 发布时间:2022-05-23 06:52
共2个回答
热心网友 时间:2023-10-16 00:57
private static n as interger private sub command1_click() if n=3 then msgbox"对不起,你不是本系统的合法用户" exit sub end if if text1.text=用户名 and text2.text=密码 then msgbox"欢迎使用本系统" else n=n+1 msgbox"用户名或密码错误,请重新输入!" end if end sub热心网友 时间:2023-10-16 00:57
Private n As Integer Private Sub Command1_Click() If Text1.Text <> "abc" Or Text2.Text <> "abc" Then n = n + 1 If n = 3 Then MsgBox "对不起,你不是本系统的合法用户" End End If MsgBox "用户名或密码输入错误,请重新输入" Else Form2.Show End If End Sub