首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
设在工程中有一个标准模块,并定义了如下类型: 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
32
问题
设在工程中有一个标准模块,并定义了如下类型:
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全国计算机二级
相关试题推荐
以下叙述中错误的是()。
有下面程序代码:OptionBase1PrivateSubCommand1_Click()Dima(10)AsInteger,x,bx=InputBox("请输入一个多位整数")
如果要在窗体上画一个标签,应在工具箱窗口中选择的图标是( )。
语句PrintString(3,"string")的功能是
执行下列语句:strInput=InputBox("请输入字符串","字符串对话框","字符串")将显示输入对话框。此时如果直接单击"确定"按钮,则变量strInput的内容是( )。
假定有以下循环结构:DoUntil条件表达式循环体Loop则以下正确的描述是()。
为了把命令按钮设置为图形格式,其Style属性值为()。
下列关于算法复杂度叙述正确的是
算法的空间复杂度是指
随机试题
考生文件夹下存在一个数据库文件“samp2.mdb”,里面已经设计好表对象“tCourse”、“tSinfo”、“tGrade”和“tStudent”,试按以下要求完成设计:(1)创建一个查询,查找并显示“姓名”、“政治面貌”、。课程名”和“成绩”4个字
化工企业对污水处理方法有多种,其中化学处理法包括()。
引起胁痛的病机是
引起肝肿大的病变可有
男,54岁。因车祸受重伤急诊入院,因没带押金,医院拒绝为患者办理住院手续,待患者家属拿来钱时,已错过抢救最佳时机,患者死亡。该案例违背了患者的哪项权利(
A.必要时,需要时B.立即C.适量D.一半,半量E.取,取药p.r.n()
根据《建筑地基基础设计规范》(GB50007—2002),在对地基承载力特征值进行修正时,下列说法正确的有()。
符合微波天线馈源安装的技术要求的有()。
下列各项中影响人们购买保险的因素的有( )。Ⅰ.收入与财富的变动Ⅱ.保费附加Ⅲ.其他保障来源的减少Ⅳ.个人所拥有的有关损失分布的信息Ⅴ.规避风险的要求
在C++中用来实现运行时多态性的是
最新回复
(
0
)