当前位置: X题卡 > 所有题目 > 题目详情

在运行阶段,要在文本框Text1获得焦点时选中文本框中所有内容,对应的事件过程是( )

查看本题答案

你可能感兴趣的试题

Private Sub Text1_GotFocus()  Text1.SelStart=0  Text1.SelLength=Len(Text1.Text)  End Sub  Private Sub Text1_LostFocus()  Text1.SelStart=0  Text1.SelLength=Len(Text1.Text)  End Sub  Private Sub Text1_Change()  Text1.SelStart=0  Text1.SelLength=Len(Text1.Text)  End Sub  Private Sub Text1_SetFocus()  Text.SelStart=0  
文本框中显示的是“程序设计”,且焦点在文本框中  文本框中显示的是“等级考试”,且焦点在文本框中  文本框中显示的是“程序设计”,且焦点在命令按钮上  文本框中显示的是“等级考试”,且焦点在命令按钮上  
Private Sub Text1_GotFocus()
Text1.SelStart=0
Text1.SelStart=Len(Text1.text)
End Sub  
Private Sub Text1_LostFocus()
Text1.SelStart=0
Text1.SelStart=Len(Text1.text)
End sub  
Private Sub Text1_Change()
Text1.SelStart=0
Text1.SelStart=Len(Text1.text)
End sub  
Private Sub Text1_SetFocus()
Text1.SelStart=0
Text1.SelStart=Len(Text1.text)
End sub  
文本框中无内容,焦点在文本框中  文本框中为"Basic",焦点在文本框中  文本框中为"Basic",焦点在按钮上  文本框中为"Visual Basic",焦点在按钮上  
单击文本框  双击文本框  单击文本框  按键盘上的某个键  
在文本框TEXT1中输出55  在文本框TEXT1中输出0  出错  在文本框TEXT1中输出不定值  
Private Sub Text1_GotFocus()  Text1.SelStart=0  Text1.SelLength=Len(Text1.Text)  End Sub  Private Sub Text1_LostFocus()  Text1.SelStart=0  Text1.SelLength=Len(Text1.Text)  End Sub  Private Sub Text1_Change()  Text1.SelStart=0  Text1.SelLength=Len(Text1.Text)  End Sub  Private Sub Text1_SetFocus()  Text.SelStart=0  Text1.SelLength=Len(Text1.Text)  End Sub  
文本框中无内容,焦点在文本框中  文本框中为"Basic",焦点在文本框中  文本框中为"Basic",焦点在按钮上  文本框中为"Visual Basic",焦点在按钮上  
Private Sub Text1_GotFocus()
 Text1.SelStart=0
 Text1.SelLength=Len(Text1.Text)
 End Sub  
Private Sub Text1_LostFocus()
 Text1.SelStart=0
 Text1.SelLength=Len(Text1.Text)
 End Sub  
Private Sub Text1_Change()
 Text1.SelStart=0
 Text1.SelLength=Len(Text1.Text)
 End Sub  
Private Sub Text1_SetFocus()
 Text.SelStart=0
 Text1.SelLength=Len(Text1.Text)
 End Sub  
文本框中显示的是“程序设计”,且焦点在文本框中  文本框中显示的是“等级考试”,且焦点在文本框中  文本框中显示的是“程序设计”,且焦点在命令按钮上  文本框中显示的是“等级考试”,且焦点在命令按钮上  
文本框中显示的是“程序设计”,且焦点在文本框中  文本框中显示的是“等级考试”,且焦点在文本框中  文本框中显示的是“程序设计”,且焦点在命令按钮上  文本框中显示的是“等级考试”,且焦点在命令按钮上  
文本框中显示的是“程序设计”,且焦点在文本框中  文本框中显示的是“等级考试”,且焦点在文本框中  文本框中显示的是“程序设计”,且焦点在命令按钮上  文本框中显示的是“等级考试”,且焦点在命令按钮上  
文本框中显示的是“程序设计”,且焦点在文本框中  文本框中显示的是“等级考试”,且焦点在文本框中  文本框中显示的是“程序设计”,且焦点在命令按钮上  文本框中显示的是“等级考试”,且焦点在命令按钮上  
文本框中无内容,焦点在文本框中  文本框中为“Basic”,焦点在文本框中  文本框中为“Basic”,焦点在按钮上  文本框中为“Visual Basic”,焦点在按钮上  
文本框中显示的是"程序设计",且焦点在文本框中  文本框中显示的是"等级考试",且焦点在文本框中  文本框中显示的是"程序设计",且焦点在命令按钮上  文本框中显示的是"等级考试",且焦点在命令按钮上  
Text1.Caption="Hello",是将在文本框Text1中显示Hello  Text1.Locked=True,设置该文本框Text1不能编辑  Text1.PasswordChar="#",设置文本框Text1输入的字符都显示为#,但实际接收的还是输入的内容  Text1.Visible=False,设置该文本框Text1不可见  
Private Sub Text1_GotFocus() Text1.SelStart=0 Text1.SelLength=Len(Text1.Text) End Sub  Prirate Sub Text1_LosFocus() Text1.SelStart=0 Text1.SelLength=Len(Text1.Text) End Sub  Private Sub Text1_Change() Text1.SelStart=0 Text1.SelLength=Len(Text1.Text) End Sub  Private Sub Text1_SetFocus() Text1.SelStart=0 Text1.SelLength=Len(Text1.Text) End Sub  
文本框中显示的是"程序设计",且焦点在文本框中  文本框中显示的是"等级考试",且焦点在文本框中  文本框中显示的是"程序设计",且焦点在命令按钮上  文本框中显示的是"等级考试",且焦点在命令按钮上  

热门试题

更多