首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
设在工程中有一个标准模块,并定义了如下类型: Type Stutype ino As Integer stmame As String*20 strsex As String*2 smark As Single
设在工程中有一个标准模块,并定义了如下类型: Type Stutype ino As Integer stmame As String*20 strsex As String*2 smark As Single
admin
2020-07-22
55
问题
设在工程中有一个标准模块,并定义了如下类型:
Type Stutype
ino As Integer
stmame As String*20
strsex As String*2
smark As Single
End Type
在窗体上画一个名为Command1的命令按钮,要求当执行事件过程Command1 Click时,在C盘根目录下的随机文件Student.dat中写入一条记录。下列能够完成该操作的是( )。
选项
A、Sub Command1_Click()
Dim student As Studtype
Dim record_no As Integer
record_no=1
With student
.ino=12:.strname="smith":
.strsex="男":.smark=89
EndWith
Open"c:\Student.dat"For Input As #1 Len= Len(Student)
Put#1,record_no,Student
Close #1
End Sub
B、Sub Command1_Click()
Dim Student As Stutype
Dim Record_no As Integer
Record_no=1
With Student
.ino=12:.strname="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 Command1 Click()
Dim Student AS Stutype
Dim Record_no As Integer
Record_no=1
With Student
.ino=12:.strname="smith"
.strsex="男":.smark=89
End With
Open"c:\student.dat"For Random As 1 Len=Len(Student)
Write#1.Record no.Student
Close#1
End Sub
D、Sub Command1 Click()
Dim Student As Stutype
Dim Record no As Integer
Record no=1
With Student
.ino=12:.strname="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 FileName For Random As #文件号[Len=记录长度],然后以Put方法写入一条记录,方法的格式为:Put[#]文件号,[记录号],变量名。
转载请注明原文地址:https://kaotiyun.com/show/BrHp777K
本试题收录于:
二级VB题库NCRE全国计算机二级分类
0
二级VB
NCRE全国计算机二级
相关试题推荐
设在工程文件中有一个标准模块,其中定义了如下记录类型TypeBooks NameAsString*10 TelNumAsString*20EndType在窗体上画一个名为Command1的命令按钮,要求当执行事件过程Com
以下关于VB的叙述中,错误的是
以下叙述中错误的是()。
将数据项"Student"添加到名称为List1的列表框中,并使其成为列表框第一项的语句为( )。
下面哪个属性肯定不是框架控件的属性( )。
以下叙述中错误的是()。
下列可作为VisualBasic变量名的是()。
为了把命令按钮设置为图形格式,其Style属性值为()。
如果一个顶级菜单项的访问键为D,则以下等同于单击该菜单项的操作为
随机试题
举升机按照功能和形状可分为,单柱、双柱、四柱、()。
入汤剂宜后下的药物是
治疗胃脘疼痛隐隐,喜按喜暖,兼见泛吐清水,便溏,手足不温,舌淡苔薄,脉虚弱,在足三里、内关、中脘基础上,应加取()
环卫工人马某在垃圾桶内发现一名刚出生的婴儿后向公安机关报案,公安机关紧急将婴儿送医院成功抢救后未予立案。关于本案的立案程序,下列哪一选项是正确的?
配送路线优化是()。
求助者:我近来每天晚上都睡不好,白天上班头昏沉沉的,我是不是有什么问题啊?心理咨询师:是吗?我们这儿有十几个心理量表,可以测一下,就能知道你有什么问题了。求助者:行。心理咨询师:那我们先做一个瑞文测验,然后再做SDS和SCL-90,
近年来兴起的“慕课”(MOOC)是指()。
构建社会主义和谐社会的重点是()。
解决网络中信息传送的源结点用户与目的结点用户身份真实性问题的功能称为()。
TheDifferencesBetweenAmericanandBritishEnglishI.IntroductionAmericanEnglishandBritishEnglish:two【T1】______ofEngli
最新回复
(
0
)