TypeBooks NameAs String * 10 TeINumAs String * 20 End Type 在窗体上画一个名为Command1的命令按钮,要求当执行事件过程Command1_Click时,在顺序文件Person. txt中写入一条Books类型的记录。下列能够完成该操作的事件过程是()。 A、Private SubCommand1_Click() DimB、AsBooks Open "Person. txt" For OutputAs #1 B、Name = InputBox( "输入姓名" ) B、TelNum = InputBox( "输入电话号码" ) Write #1,B、Name,B、TelNum Close #1 End Sub B、Private SubCommand1_Click() DimB、AsBooks Open "Person. txt" For InputAs #1 B、Name = InputBox( "输入姓名" ) B、TelNum = InputBox( "输入电话号码" ) Print #1,B、Name,B、TelNum Close #1 End Sub C、Private SubCommand1_Click() DimB、AsBooks Open "Person. txt" For OutputAs #1 B、Name = InputBox( "输入姓名" ) B、TelNum = InputBox( "输入电话号码" ) Write #1,B Close #1 End Sub D、Private SubCommand1_Click() Open "Person. txt" For InputAs #1 Name = InputBox( "输入姓名" ) TelNum = InputBox( "输入电话号码" ) Print #1, Name, TelNum Close #1 End Sub