首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
设在工程中定义了下列类型: Type Stutype ino As Integer strname As String*20 strsex As String*1 smark As Single End Type 在窗体上正确使用这个类型的是下列哪个操作(
设在工程中定义了下列类型: Type Stutype ino As Integer strname As String*20 strsex As String*1 smark As Single End Type 在窗体上正确使用这个类型的是下列哪个操作(
admin
2010-11-20
67
问题
设在工程中定义了下列类型:
Type Stutype
ino As Integer
strname As String*20
strsex As String*1
smark As Single
End Type
在窗体上正确使用这个类型的是下列哪个操作( )。
选项
A、Sub Command1_Click()
Dim student As Stutype
With student
.ino=12
.Strname=smith
.strsex=男
.smark=89
End With
End Sub
B、Sub Command1_Click()
Dim Student As Stutype
With student
.ino=12
.strname="smith"
.strsex="男"
.smark=89
End With
End Sub
C、Sub Comnland1_Click()
Dim student As Stutype
With Stutype
.ino=12
.strname="smith"
.strsex="男"
.smark=89
End With
End Sub
D、Sub Command1_Click()
Dim student As Stutype
With student
.ino=12
.Strname="smith"
.strsex="男"
.smark=89
End student
End Sub
答案
B
解析
本题考查为记录类型变量student赋值。使用With语句可以对某个对象执行一系列的语句,而不用重复指出对象的名称。其语法如下:
With记录类型变量
.记录类型变量成员名=要赋的值
…
End With
给记录类型变量中的字符串型成员赋值时要加双引号。
转载请注明原文地址:https://www.kaotiyun.com/show/ydmp777K
本试题收录于:
二级VB题库NCRE全国计算机二级分类
0
二级VB
NCRE全国计算机二级
相关试题推荐
包含Swing构件的Applet(小应用程序)应该是______类的子类。
某二叉树有5个度为2的结点,则该二叉树中的叶子结点数是
在关系数据库中,把数据表示成二维表,每一个二维表称为______。
数据报通信协议UDP把每个传输的数据大小控制在下列哪一项之内
串行化对象的方法有两种:把对象写到对象流和【】。
在利用JDBC连接数据库时,为建立实际的网络连接,不必传递的参数是( )。
已知如下代码:switch(m){case0:System.out.println("Condition0");case1:System.out.println("Condition1");
设有下列二叉树:对此二叉树中序遍历的结果为
确定一个控件在窗体上的位置的属性是
关于ExitFor的使用说明正确的是()。
随机试题
如何检查冷暖风机?
Americansocietyisnotnap(午睡)friendly.Infact,saysDavidDinges,asleepspecialistattheUniversityofPennsylvaniaSchool
风湿性心脏病多见于哪种面容()
尿少,口干,皮肤弹性稍差,血压为11.3/7.7kPa,呼吸深快,口唇樱红,前囟门凹陷,心音低钝,肺无哕音,腹胀,四肢无力、稍凉,血钠132mmol/L。可能的诊断是
下列技术手段中,对建筑室外微气候环境的调节影响小的是()。
甲是乙公司依法设立的分公司。下列表述中,符合公司法律制度规定的是()。
前期物业服务合同的主要内容包括()①合同的当事人;②物业基本情况;③服务内容与质量;④服务费用;⑤物业的经营与管理;
两根同样长的蜡烛,点完粗蜡烛要3小时,点完细蜡烛要1小时。同时点燃两根蜡烛,一段时间后,同时熄灭,发现粗蜡烛的长度是细蜡烛的3倍。问两根蜡烛燃烧了多长时间?
被称为继五四运动和延安整风运动之后又一场马克思主义思想解放运动的是()
IfyouwanttoknowwhyDenmarkistheworld’sleaderinwindpower,startwithathree-hourcartripfromthecapitalCopenhage
最新回复
(
0
)