Private Sub Command1_Click()
If Len(Text1.Text) < 5 Then
MsgBox "请输入姓"
End If
If Len(Text2.Text) < 4 Then
MsgBox "请输入名"
End If
If Len(Text1.Text & Text2.Text) < 4 Then
MsgBox "请输入姓"
End If
如上 我要求就是当Text1.Text & Text2.Text 都没有输入的时候, 仅仅提示:请输入姓 可是我弄的不怎么正确 上面的两个代码怎么样在Text1.Text & Text2.Text 都没有输入的时候不提示 只提示请输入姓 。