首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
设在工程中有一个标准模块,并定义了如下类型: 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
38
问题
设在工程中有一个标准模块,并定义了如下类型:
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全国计算机二级
相关试题推荐
从键盘上输入一个浮点数asingle,利用字符串函数对该数进行处理后,如果输出的内容不是“非浮点数”,则对程序输出的内容分析正确的是()。asingle=InputBox("请输入一个浮点数:")str1$=Str$(asing
有三个关系R、S和T如下: 则由关系R和S得到关系T的操作是( )。
下列关于窗体的描述中,错误的是()。
若要把窗体上命令按钮Command1的状态设置为不可用,应该执行的命令是( )。
一个工程中包含两个名称分别为Form1、Form2的窗体、一个名称为Func的标准模块。假定在Form1、Form2和Func中分别建立了自定义过程,其定义格式为:Form1中定义的过程:PrivateSubFun1()EndSubForm2
以下关于VB文件的叙述中,正确的是
下列可作为VisualBasic变量名的是()。
在下列关系运算中,不改变关系表中的属性个数但能减少元组个数的是
请根据以下各小题的要求设计VisualBasic应用程序(包括界面和代码)。(1)在名称为Form1的窗体上画一个名称为Combol的组合框,其宽度为1200,其类型如图3—188所示(即简单组合框)。要求如下:①请按图中所示,通过属
算法的空间复杂度是指()。
随机试题
MarkTwain’sfullliterarycareerbegantoblossomin1869withatravelbook______,anaccountofAmericantouristsinEurope
Aphonecallsenthim______tothehospital.
“罗盘纹”是形容哪种药材的断面特征
A.心B.肺C.肝D.脾E.肾在中医五轮学说中黑睛为风轮,属()。
房地产经纪行业发展的制约因素不包括:()。
可以发行金融债券的机构有()
人民教育出版社普通高中课程标准实验教科书《思想政治必修4──生活与哲学》第八课第二框《用发展的观点看问题》一共包括以下两个小标题:(1)前途是光明的,道路是曲折的;(2)做好量变的准备,促进事物的质变。请对这一框的教学内容进行简要分析,并进行教学设计
[*]
你小时候读过的那些有趣的故事你还记得吗?
______weareallhere,let’stryandreachadecision
最新回复
(
0
)