首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
设在工程中有一个标准模块,并定义了如下类型: Type Stutype ino As Integer strname As String*20 strsex AS String*2 smark As Single
设在工程中有一个标准模块,并定义了如下类型: Type Stutype ino As Integer strname As String*20 strsex AS String*2 smark As Single
admin
2016-01-22
39
问题
设在工程中有一个标准模块,并定义了如下类型:
Type Stutype
ino As Integer
strname As String*20
strsex AS String*2
smark As Single
EndType
在窗体上画一个名为Command1的命令按钮,要求当执行事件过程Command1 Click时,在C盘根目录下的随机文件Student.dat中写入一条记录。下列能够完成该操作的是( )。
选项
A、Sub Command1_Click()
Dim student As Studype
Dim record_no As Integer
record_no=1
With student
.ino=12:.stmame="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:.stmame="smith"
.strsex="男":.smark=89
End With
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:.stmame="smith"
.strsex="男":.smark=89
End With
Open"c:\student.dat"For Random As 1 Len=Len(Student)
Write#1,R
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,S
答案
B
解析
本题考查文件操作。题目中要求以随机的方式(Random)打开一个文件,打开文件的方法格式为:Open FileName For Random As #文件号[Len=记录长度],然后以Put方法写入一条记录,方法的格式为:Put[#]文件号,[记录号],变量名。
转载请注明原文地址:https://kaotiyun.com/show/DwLp777K
本试题收录于:
二级VB题库NCRE全国计算机二级分类
0
二级VB
NCRE全国计算机二级
相关试题推荐
对话框在关闭之前,不能继续执行应用程序的其他部分,这种对话框属于()。
要建立一个学生成绩的随机文件,如下定义了学生的记录类型,由学号、姓名、三门课程成绩(百分制)组成,下列程序段正确的是()。
控件是()。
可以用做其他控件容器的控件是
下面程序的运行结果是()。PrivateSubCommandl_Click()a=1.5b=1.5Callfun(a,B)Printa,bEndSubPrivateSubfun(
数据库保护分为安全性控制、______、并发性控制和数据的恢复。
窗体上有名称为Text1、Text2的两个文本框,和一个由3个单选按钮构成的控件数组Option1,如图1所示。程序运行后,如果单击某个单选按钮,则执行Text1中数值与该单选按钮所对应的运算(乘1、乘10或乘100),并将结果显示在Text2中,如图2
在随机文件中使用用户自定义数据类型时,要注意它的成员的要求,它的成员不能是()。
下列叙述中正确的是
下列可作为VisualBasic变量名的是
随机试题
计算,其中D为圆环:π2≤χ2+y2≤4π2。
其他投资支出的内容有(),为可行性研究购置固定资产的费用;购买或自行开发无形资产的费用,递延资产。
针对审计业务变更为审阅业务或相关服务业务的要求,以下说法中,错误的是()。
甲、乙、丙、丁四人先后来到一个农场工作。甲说:“我刚到农场时,在玉米地旁种了十几棵桃树。”乙说:“我刚来时正赶上农场附近新修公路,把桃树林都砍了。”丙说:“农场的玉米都是我种的。”丁说:“我刚到的第一天,正赶上摘桃,树上的桃又大又甜。”据此判断,四人来到农
为规范各部院政务活动、保障其正常运转,清朝针对中央各部门的职责、办事规程而制定的基本行政规则是
Geographyisthestudyoftherelationshipbetweenpeopleandtheland.Geographerscompareandcontrast【C1】______ placesonthe
WhatisLorraineMelvill’sbusiness?
A、Morepeoplecometoenjoymuseums.B、Morepeoplefeartoexperiencenewthings.C、Manyoldpeoplearepuzzledbymodernexhibi
A、Highwaycrime.B、Poortrafficcontrol.C、Confusingroadsigns.D、Drivers’errors.D
A、Shecoulddriveacarthoughshewasovereighty.B、Sheviolatedthetrafficrulesbutescapedbeingcaught.C、Shehadneverm
最新回复
(
0
)