登录/
注册
题库分类
下载APP
帮助中心
首页
考试
搜题
APP
当前位置:
首页
>
查试题
>
执行Text1.Move200,300,1500,1000语句后,控件Text1的宽度是()twip。
单选题
执行Text1.Move200,300,1500,1000语句后,控件Text1的宽度是()twip。
A. 200
B. 300
C. 1500
D. 1000
查看答案
该试题由用户196****10提供
查看答案人数:28064
如遇到问题请
联系客服
正确答案
该试题由用户196****10提供
查看答案人数:28065
如遇到问题请
联系客服
搜索
相关试题
换一换
单选题
执行Text1.Move200,300,1500,1000语句后,控件Text1的宽度是()twip。
A.200 B.300 C.1500 D.1000
答案
判断题
We can move a text from one document to another.
答案
单选题
执行下列程序,在文本框中输入字符“a”,则输出结果为______。 Private Sub Form_Load()Text1.Text="" End Sub Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)Text1.Text=KeyCodePrint Text1.Text End Sub
A.a B.65 C.A D.97
答案
单选题
文本框Text1中有选定的文本,执行Text1.SelText=”Hello”的结果是()
A.“Hello”将替换原来选定的文本 B.“Hello”将插入到原来选定的文本之前 C.Text1.SelLength为5 D.文本框中只有“Hello”信息
答案
单选题
()processing offers many ways to edit text and establish document formats. you can easily insert,delete,change,move and copy words or blocks of text.
A.Data B.Database C.Word D.File
答案
单选题
The()is a temporary storage area that you can use to copy or move selected text or object among application.
A.cache B.pool C.buffer D.clipboard
答案
单选题
设窗体中有一个文本框Text1,若在程序中执行了Text1.SetFocus,则触发
A.Text1的SetFocus事件 B.Text1的GotFocus事件 C.Text1的LostFocus事件 D.窗体的GotFocus事件
答案
单选题
设窗体中有一个文本框Text1,若在程序中执行了Text1.SetFocus,则触发______。
A.窗体的GotFocus事件 B.Text1的SetFocus事件 C.Text1的GotFocus事件 D.Text1的LostFocus事件
答案
单选题
窗体上有名称分别为Text1、Text2的文本框,名称为Command1的命令按钮。运行程序,在Text1中输入“FormList”,然后单击命令按钮,执行如下程序:Private Sub Command1_Click()Text2.Text=UCase(Mid(Text1.Text,5,4))End Sub在Text2中显示的是()。
A.form B.list C.FORM D.LIST
答案
单选题
执行下列程序后,在文本框中输入字符“d”,输出结果为______。 Private Sub Form_Load()Text1="" End Sub Private Sub Text1_Change()Print Text1.Text End Sub Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)Print Chr(Ke
A.DdD B.ddD C.dDd D.Ddd
答案
热门试题
下面的程序执行时,将把当前目录上的顺序文件smtext1.txt的内容读入内存,并在文本框Text1中显示出来。请填空。 Private Sub Command1_Click() Dim inData As String Text1.Text="" Open ".smtext1.txt"______As1 Do While______ Input 1,inData Text1.Text=Text1
下面程序段运行后,text3的值是()Text1.Text = "234"Text2.Text = "432" text3.text= Text1.Text + Text2.Text
窗体上有一个由两个文本框组成的控件数组,名称为Text1,并有如下事件过程: Private Sub Text1_Change(Index As Integer) Select Case Index Case 0 Text1 (1). FontSize = Text1 (0). FontSize * 2 Text1 (1). Text = Text1 (0). Text Case 1 Text1
有如下程序段,执行该段程序后,TextBox1中显示的内容为______。 Dim a%, b%, c% a = 10 : b = 100 : c = 500 If a < b Then If c > a Then TextBox1.Text = b Else TextBox1.Text = c End If Else TextBox1.Text = a End If()
窗体上有一个命令按钮和一个文本框,程序执行后,在文本框中输入12345,单击命令按钮后的输出结果为( )。 Private Sub Command1_Click() Dim A As Integer,B As Integer Text1.SelStart=2 Text1.SelLength=2 A=Val(Text1.SelText) B=Len(Text1.Text) Print A*B End Sub
窗体上有名称分别为Text1、Text2的文本框,名称为Command1的命令按钮。运行程序,在Text1中输入“FormList”,然后单击命令按钮,执行如下程序:在Text2中显示的是()
在窗体上有两个命令按钮Command1和Commnd2,三个文本框Text1,Text2和Text3,有如下事件过程: Private Sub Comuand1_Click() Text3.Text= Text1.Text+Text2.Text End SubPrivate Sub Command2_Click() Text3.Text= Text3.Text+Str(Val(Text1.Text)+Val (Text2.Text)) End Sub程序运行后,在Text1和Text2中分别输入123、456,然后依次单击Command1和Command2,则在Text3中显示的内容依次是______ 。
在窗体上画3个标签、3个文本框(名称分别为Text1、Text2和Text3)和1个命令按钮(名称为Command1),外观如图所示。编写如下程序Private Sub Form_Load() Text1.Text="" Text2.Text="" Text3.Text=""End SubPrivate Sub Command1_Click() x=Val(Text1.Text) y=Val(Te
在窗体上建立三个文本框,名称分别为Text1、Text2和Text3,一个命令按纽,名称为command1,如果在TEXT1中输入数200,在TEXT2中输入数150,则执行下列程序后,TEXT3的值为______。 Private Sub Command1_Click() Dim m, n As Integer m = Val (Text1. Text) n = Val (Text2. Text) If n * m = 0 ThenExit Sub End If If m < n Then t =m: m= n: n = t End If Dor = m Mod nm= nn =r Loop While r <> 0 Text3. Text= m End Sub
有程序代码:Text1.text="Visual Basic" 其中的Text1、text和"Visual Basic"分别代表( )。
在窗体上画3个标签、3个文本框(名称分别为Text1、Text2和Text3)和1个命令按钮 (名称为Command1),外观如下图所示。 编写如下程序: Private Sub Form_Load() Text1.Text="" Text2.Text="" Text3.Text="" End Sub Private Sub Commandl_Click() x=Val(Text1.Text) y
Move our eyes quickly over the text to look for some information when we read. Which of the following reading skills do we use
设窗体上有一个文本框Text1和一个命令按钮Command1,并有以下事件过程:Private Sub Command1_Click()Dim s As String,ch As Strings=""For k=1 To Len(Text1)ch=Mid(Text1,k,1)s=ch+sNext kText1.Text=sEnd Sub程序执行时,在文本框中输入“B
在窗体上画1个文本框,名称为Text1,然后编写如下程序: Private Sub Form Load() Open "C:dat.txt" For Output As1 Text1.Text="" End Sub Private Sub Text1_KeyPress(KeyAscii As integer) If______=13 Then If UCase(Text1.Text=______)
在窗体上画两个名称分别为Text1、Text2的文本框。Text1的Text属性为“Database”, 如图所示。现有如下事件过程: Private Sub Text1_Change()Text2.Text=Mid(Text1,1,1)End Sub运行程序,在文本框Text1中原有字符之前输入a,Text2中显示的是:()。
下列程序执行后,变量S的值为 Dim s As Long,x As Integer s=0 For x=1 To 10 Step 2s=s+x Next x Text1.Text=s
在窗体上画1个文本框,名称为Text1,然后编写如下程序: Private Sub Form_Load() Open"d:empdat.txt"For Output As 1 Text1.Text="" End Sub Private Sub Text1_KeyPress(Key Ascii As Integer) If______=13 Then If U Case(Text1.Text)=__
在窗体上画1个文本框,名称为Text1,然后编写如下程序: Private Sub Form_Load() Open"d:empdat.txt"For Output As 1 Text1.Text="" End Sub Private Sub Text1_KeyPress(Key Ascii As Integer) If (10) =13 Then If U Case(Text1.Text)= (
在窗体(Name属性为Form1)上画两个文本框(其Name属性分别为Text1和Text2)和一个命令按钮(Name属性为Command1),然后编写如下两个事件过程: Private Sub Command1_Click()A=Text1.Text+Text2.TextPrint A End Sub Private Sub Form Load()Text1.Text=" "Text2.Text
在窗体上画—个文本框,名称为Text1,然后编写如下程序: Private Sub Form_Load() Open"d:empdat.txt"For Output As 1 Text1.Text="" End Sub Private Sub Text1_KeyPress(Key Ascii As Integer) IfKeyAscii=13 Then If UCase(Text1.Text)=
购买搜题卡
会员须知
|
联系客服
免费查看答案
购买搜题卡
会员须知
|
联系客服
关注公众号,回复验证码
享30次免费查看答案
微信扫码关注 立即领取
恭喜获得奖励,快去免费查看答案吧~
去查看答案
全站题库适用,可用于E考试网网站及系列App
只用于搜题看答案,不支持试卷、题库练习 ,下载APP还可体验拍照搜题和语音搜索
支付方式
首次登录享
免费查看答案
20
次
微信扫码登录
账号登录
短信登录
使用微信扫一扫登录
获取验证码
立即登录
我已阅读并同意《用户协议》
免费注册
新用户使用手机号登录直接完成注册
忘记密码
登录成功
首次登录已为您完成账号注册,
可在
【个人中心】
修改密码或在登录时选择忘记密码
账号登录默认密码:
手机号后六位
我知道了
APP
下载
手机浏览器 扫码下载
关注
公众号
微信扫码关注
微信
小程序
微信扫码关注
领取
资料
微信扫码添加老师微信
TOP