在窗体上画一个名为Command1的命令按钮,其Command1_Click事件过程如下: Sub Command1_Click() Dim student As studtype Dim record_no As Integer

admin2012-03-22  30

问题 在窗体上画一个名为Command1的命令按钮,其Command1_Click事件过程如下:    Sub Command1_Click()    Dim student As studtype    Dim record_no As Integer      record_no=1      With student        .ino=12        .strname="smith"        .strsex="男"        .smark=89      End With      ______      Put # 1,record_no,student      Close # 1    End Sub    要求在c:\的随机文件student.dat写入一条记录。应在程序中空行处填入以下哪条语句使该功能完整

选项 A、Open"c:\student.dat"For Input As # 1 len=len(student)   
B、Open"c:\student.dat"For random As # 1 len=len(student)   
C、Open"c:\student.dat"For Output As # 1 len=len(student)   
D、Open"c:\student.dat"For Append As # 1 len=len(student)

答案B

解析 [命题目的] 考查考生对文件操作语句的掌握情况。
   [解题要点] 打开随机文件的一般格式为Open“文件名”For Random As#文件号[Len=记录长度]随机文件的读写操作通过Put语句来实现,其格式为:
   Put#文件号,[记录号],变量
   [考点链接] 文件指针的定位、读取文件等。
转载请注明原文地址:https://kaotiyun.com/show/ghhp777K
0

最新回复(0)