二级二级VB2009年3月全国计算机等级考试二级VB语言程序设计
题目内容

设在工程文件中有一个标准模块,其中定义了如下记录类型:Type BooksName As String * 10TelNum As String * 20End Type在窗体上画一个名为Command1的命令按钮,要求当执行事件过程Command1_Click时,在顺序文件Person.txt中写入一条Books类型的记录。下列能够完成该操作的事件过程是(    )。

2024-07-09

A.Private Sub Command1_Click()Dim B AS BooksOpen "Person.txt" For Output As #1B.Name=InputBox ("输入姓名")B.TelNum=InputBox ("输入电话号码")Write #1,

B.Name, B.TelNumClose #1End SubB.Private Sub Command1_Click()Dim B As BooksOpen "Person.txt" For Input As #1B.Name=InputBox ("输入姓名")B.TelNum=InputBox ("输入电话号码")Print #1, B.Name, B.TelNureClose #1End Sub

C.Private Sub Command1_Click()Dim B AS BooksOpen "Person.txt" For Output As #1B.Name=InputBox ("输入姓名")B.TelNum=InputBox ("输入电话号码")Write #1, BClose #1End Sub

D.Private Sub Command1_Click()Open "Person.txt" For Input As #1Name=InputBox ("输入姓名")TelNum=InputBox ("输入电话号码")Print #1, Name, TelNumClose #1End Sub

题目答案

试卷相关题目

最新试卷
热门试卷

长理培训客户端 资讯,试题,视频一手掌握

去 App Store 免费下载 iOS 客户端