首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
设在工程中有一个标准模块;并定义了如下类型: Type Stutype ino As Integer strname AS String*20 strsex As String*2 s
设在工程中有一个标准模块;并定义了如下类型: Type Stutype ino As Integer strname AS String*20 strsex As String*2 s
admin
2012-09-07
35
问题
设在工程中有一个标准模块;并定义了如下类型:
Type Stutype
ino As Integer
strname AS String*20
strsex As String*2
smark As Single
End Type
在窗体上画一个名为Commandl的命令按钮,要求当执行事件过程Commandl_Click时,在C盘根目录下的随机文件Student.dat中写入一条记录。下列能够完成该操作的是( )。
选项
A、Sub Commandl_Click()
Dim student As Studtype
Dim record_no As Integer
record_no=1
With student
.ino=12:.strname=“smith”:
.strsex=“男”:.smark=89
End With
Open“c:\Student.dat”For Input As#1 Len=Len(Student)
Put#1.record_no.Student
Close#1
End Sub
B、Sub Commandl_Click()
Dim Student As Stutype
Dim Record_no As Integer
Record_no=1
With Student
.ino=12:.stmame=“smith”
.strsex=“男”:.smark=89
EndWith
Open“c:\student.dat”For Random As#1 Len=Len(Student)
Put#1.Record_no.Student
Close#1
End Sub
C、Private Sub Commandl_Click()
Dim Student As Stutype
Dim Record_no As Integer
Record_no=1
With Student
.ino=12:.stmame=“smith”
.strsex=“男”:.smark=89
End With
Open“c:\student.dat”For Random As 1 Len=Len(Student)
Write#1.Record_no.Student
Close#1
EndSub
D、Sub Commandl_Click()
Dim Student As Stutype
Dim Record_no As Integer
Record_no=1
With Student 、
.ino=12:.stmame=“smith”
.strsex=“男”:.smark=89
EndWith
Open“c:\student.dat”For Output As#1 Len=Len(Student)
Put#1,Record_no.Student
Close#1
End Sub
答案
B
解析
本题考查文件操作。题目中要求以随机的方式(Random)打开一个文件,打开文件的方法格式为:Open FileNameFor Random As#文件号[Len=记录长度],然后以Put方法写入一条记录,方法的格式为:Put[#]文件号,[记录号],变量名。
转载请注明原文地址:https://kaotiyun.com/show/aPhp777K
本试题收录于:
二级VB题库NCRE全国计算机二级分类
0
二级VB
NCRE全国计算机二级
相关试题推荐
测试的目的是暴露错误,评价程序的可靠性;而【】的目的是发现错误的位置并改正错误。
数据库管理系统DBMS中用来定义模式、内模式和外模式的语言为
下面叙述中不正确的是_______。
在数据库设计中,将E-R图转换成关系数据模型的过程属于
下面叙述不正确的是
数据库设计包括两个方面的设计内容,它们是
在关系运算中,查找满足一定条件的元组的运算称之为【】。
在窗体上画一个名称为Commandl的命令按钮和一个名称为Text1的文本框,在文本框中输入以下字符串:MicrosoftVisualBasicProgramming然后编写如下事件过程:PrivateSubCommandl_Click(
假设A="GoodMorning.",B="Afternoon,Boys.",则下列表达式的结果等于"GoodBoys."的是()。
如果要改变窗体的标题,则需要设置的属性是______。
随机试题
Shepretendednot________indifferentbutherfacialexpressionbetrayedher.
下列药物属于薯蓣丸的组成成分的是()
捌)以欺诈、伪造证明材料或者其他手段骗取社会保险待遇的,由社会保险行政部门责令退回骗取的社会保险金,处骗取金额_______以上_______以下的罚款。()
肝硬化常见的死亡原因中居首位的是
李某长期吸毒,多次自费戒毒均未成功。某公安局在一次检查中发现后,将李某送至强制隔离戒毒所进行强制隔离戒毒。强制隔离戒毒属于下列哪一性质的行为?
下列属于涉税服务类执业文书的有()。
关于银行市场细分的策略,以下说法不正确的是()。
下列不属于农村中小金融机构的是()。
下列关于审计工作底稿的存在形式的表述,正确的是()。
教学评价的具体方法主要包括:()。
最新回复
(
0
)