首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
设在工程中有一个标准模块,并定义了如下类型: 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
42
问题
设在工程中有一个标准模块,并定义了如下类型:
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全国计算机二级
相关试题推荐
设有如下通用过程:PublicFunctionFun(xStrAsString)AsStringDimtStrAsString,strLAsIntegertStr=""strL=Len(xStr)i
数据库DB、数据库系统DBS、数据库管理系统DBMS之间的关系是()。
组合框有3种不同的类型,这3种类型是下拉式列表框、简单组合框和下拉式组合框,分别通过把Style属性设置为______来实现。
若要将复选框设置成图形模式,则应设置()属性值为“1-vbButtonGmphical”。
结构化程序设计的3种基本结构是()。
新建一个窗体,其BorderStyle属性设置为FixedSingle,但运行时却没有“最大化”和“最小化”按钮,可能的原因是
下列选项中不符合良好程序设计风格的是
一个工程可以包括多种类型的文件,其中,扩展名为.vbp的文件表示[2]文件;包含ActiveX控件的文件扩展名为[3]。
下面程序的运行结果是()。PrivateSubCommandl_Click()a=1.5b=1.5Callfun(a,B)Printa,bEndSubPrivateSubfun(
如果逻辑与(And)运算的结果为“真”,与它所连接的两个条件必须是()。
随机试题
testicularinterstitiaJcell
在膜式蒸发器的加热管内,液体沿管壁呈膜状流动,管内没有液层,故因液柱静压强而引起的温度差损失可忽略。()
简述阿德福ERG理论的主要观点。
多媒体电脑的正确理解是_______。
A.低钾血症B.低钙血症C.低血糖症D.低氯血症E.低镁血症久泻或营养不良患儿输液后出现精神萎靡、腹胀、肠鸣音减弱,多为
治疗窦性心动过速宜选用的药物是()。
根据所给材料,编制会计分录:某企业向宏远公司销售甲产品,商品售价200000元,增值税34000元,款项尚未收到,但符合收入确认条件,确认为收入。该批商品的销售成本为150000元。
InordertocelebratetheDragonBoatFestivalinJune,yourclassisgoingtoholdacelebrationthatday.Supposingyouareth
Whatwouldtheworldlooklikewithoutthedollardomination?USofficialsare【C1】______outadealtoendthegovernmentshutdow
Beggarscanbeseenonthestreets,subwayorat【C1】________spotsinalmostallthebigcities.Someareforrealandneedthe
最新回复
(
0
)