首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
设在工程中有一个标准模块,并定义了如下类型: Type Stutype ino As Integer strname As String*20 strsex As String*2 smark As Single End Type 在窗体上画一个名为Com
设在工程中有一个标准模块,并定义了如下类型: Type Stutype ino As Integer strname As String*20 strsex As String*2 smark As Single End Type 在窗体上画一个名为Com
admin
2019-06-20
65
问题
设在工程中有一个标准模块,并定义了如下类型:
Type Stutype
ino As Integer
strname 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:.stmame="smith"
.strsex="男":.smark=89
End With
Open"c:\Student.dat"For Input As#1Len
=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
Wim Student
.ino=12:.stmame="smith"
.strsex="男":.smark=89
End Wim
Open"c:\student.dat"For Random As1
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:.stmame="smith"
.strsex="男":.smark=89
End With
Open"c:\student.dat"For Output As#1
Len=Len(Student)
Put#1,Record_no,Student
Close#1
End Sub
答案
B
解析
本题考查文件操作。题目中要求以随机的方式(Random)打开一个文件,打开文件的方法格式为:Open File Name For Random As撑文件号[Len=记录长度],然后以Put方法写入一条记录,方法的格式为:Put[#]文件号,[记录号],变量名。
转载请注明原文地址:https://jikaoti.com/ti/hhN0FFFM
本试题收录于:
二级VB题库NCRE全国计算机二级分类
0
二级VB
NCRE全国计算机二级
相关试题推荐
关于MDI窗体下列说法正确的是()。
下面的程序执行时,将把当前目录下的顺序文件smtextl.txt的内容读入内存,并在文本框Text1中显示出来。在横线处应填写()。PrivateSubCommand1_Click()DiminDataAsString
下面程序执行时,输出的结果是()。PrivateSubForm_Click()DimiAsInteger,jAsIntegeri=10Doi=i+jForj=10Toi
以下叙述中正确的是()。
某人编写了下面的程序,希望能把Text1文本框中的内容写到Temp.txt文件中PrivateSubCommand1_Click()Open"Temp.txt"ForOutputAs#2Print"Text1"
负责数据库中查询操作的数据库语言是
设窗体上有1个水平滚动条,已经通过属性窗口把它的Max属性设置为1,Min属性设置为100。下面叙述中正确的是
在窗体上有一个名称为Drive1的驱动器列表框,一个名称为Dir1的目录列表框,一个名称为File1的文件列表框,两个名称分别为Label1、Label2的标签(标题分别为空白和“共有文件”)。要使得驱动器列表框与目录列表框、目录列表框与文件列表框同步变化
下面的数写成普通十进制数是()。2.65358979335278D-6
检查软件产品是否符合需求定义的过程称为()。
随机试题
关于胃肠激素的描述,错误的是
A.肺泡通气不足B.通气/血流比例失调C.弥散功能障碍D.肺内分流I型呼吸衰竭最主要的机制是
急性胰腺炎发病的主要病理过程是()。
某2×300MW火力发电厂,每台机组装设3组蓄电池,其中2组110V蓄电池对控制负荷供电,另1组220V蓄电池对动力负荷供电。两台机组的220V直流系统间设有联络线。蓄电池选用阀控式密封铅酸蓄电池(贫液)(单体2V),浮充电压取2.23V,均衡充电电压取2
事中质量控制包括技术交底、过程输入的检验、工艺流程、监视检验点、检验器具以及变更、不合格、()等控制。
《中华人民共和国建筑法》规定,交付竣工验收的建筑工程,必须符合规定的建筑工程质量标准,有( ),并具备国家规定的其他竣工条件;
甲公司2×17年3月31日披露2×16年财务报告。2×17年3月10日,甲公司收到所在地政府于3月8日发布的通知,规定自2×15年6月1日起,对装机容量在3万千瓦及以上有发电收入的水库和水电站,按照上网电量9厘/千瓦时征收库区基金。按照该通知界定的征收范围
Hesteppedintothedarkcave,__________highabovehishead.
(2010年真题)=[]。
Dopeoplegethappierormorefoul-temperedastheyage?Stereotypesofirritableneighbors【C1】______,scientistshavebeentry
最新回复
(
0
)