首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
设在工程中有一个标准模块,并定义了如下类型: 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
51
问题
设在工程中有一个标准模块,并定义了如下类型:
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全国计算机二级
相关试题推荐
表达式Val(".123E2")的值()。
3在文本框Textl中输入一个键盘键,将会发生4个事件,这4个事件的顺序是()。
CommonDialog控件可以显示()对话框。
以下()操作不能打开属性窗口
按照“先进先出”组织数据的数据结构是()。
数据结构分为逻辑结构与存储结构,线性链表属于______。
设R是一个二元关系,S是一个三元关系,则下列运算中正确的是()。
下面程序运行的结果为1111221222331323334请在画线处填上适当的内容使程序完整。PrivateSubForm_Click()Call
在软件开发中,需求分析阶段产生的主要文档是
在设计阶段,当按Ctrl+R键时,所打开的窗口是
随机试题
我国三大政策性银行成立于()年。
颅内压增高的辅助检查首选【】
下列账户中,期末时应将其本期发生额结转入“本年利润”账户借方的是:()。
下列药物中仅具有抗痛风作用的是
医患沟通的必要性体现在()
经营素食的名店是()。
案例2:汽车运价规则第一章总则第一条为统一全国汽车运价计算办法,正确执行《价格法》和国家物价政策,促进汽车运输事业发展,制定本规则。第二条本规则是计算汽车运费的依据。凡参与营业性运输活动的经营者、旅客、托运人,均应遵守本
“君子欲化民成俗,其必由学乎”“建国君民,教学为先”体现了()的教育目的观。
WhatisthebasichonorintakingpartintheOlympicGames?Accordingtothepassage,theOlympicGamesarenotonlysportgam
A、Inatravelagency.B、Onacampus.C、Inabookshop.D、Inateachers’shop.B
最新回复
(
0
)