假设文本框Text1中输入了一个字母,要求判断输入的字母为"A"~"E"正确,否则显示输入错误信息,下列语句中正确的是_____________。
A.
If A <= Text1.Text And Text1.Text <=E Then MsgBox "输入正确" Else MsgBox "输入错误"
B.
If "A" <= Text1.Text And Text1.Text <="E" Then MsgBox "输入正确" Else MsgBox "输入错误"
C.
If "A" <= Text1.Text Or Text1.Text <="E" Then MsgBox "输入正确" Else MsgBox "输入错误"
D.
If A <= Text1.Text <=E Then MsgBox "输入正确" Else MsgBox "输入错误"