在窗体中建立一个文本框 text1 和一个命令按钮 command1,编写下面程序: Private Sub Text1LostFocus()If Not IsNumeric(Text1)Then MsgBox 帐号有非数字字符错误 Text1.Text = Text1.SetFocus else MsgBox 帐号正确 End If End Sub 当在 text1 文本框中输入字符abc之后,单击命令按钮, 结果为()(单) A.显...