在工程中的标准模块中定义了如下数据类型: Type fruit orange As Integer apple As Integer End Type 在窗体上有—命令按钮Command1,要求当单击命令按钮时在C:\根目录下的顺序文件myfrtac.txt 中写入一条记录,下列能够完成改操作的事件过程是______ 。
A.Private Sub Command1_Click() Dim myfrt As fruit myfrt. range = 5 myfrt. apple = 10 Open “c:\myfrta. txt” For Output As #1 Print #1, myfrt. orange; myfrt. apple Close #1 End Sub
B.Private Sub Command1_Click() Dim myfrt As fruit myfrt. range= 5 myfrt. apple= 10 Open “c:\myfrtac. txt”For Input As #1 Print #1, myfrt, orange; myfrt. apple Close #1 End Sub
C.Private Sub Command1_Click() Dim myfrt As fruit myfrt. range= 5 myfrt. apple = 10 Open “c:\myfrtac. txt” For As #1 Print #1, myfrt. orange; myfrt. apple Close #1 End Sub
D.Private Sub Command1_Click() Dim myfrt As fruit myfrt. range = 5 myfrt. apple= 10 Open “c:\myfrtac..txt” For Output As #1 Print myfrt. orange; myfrt. apple Close #1 End Sub
第1题:
A.v_arr arr_type;
B.v_arr is arr_type;
C.v_arr of arr_type;
D.v_arr arr_type%type;
第2题:
A.Type110
B.Type018
C.Type26
D.Type19
第3题:
4、如果希望想为表单元素类型为type且值为text的元素设置背景色,则用如下方法定义()。
A.input{type=text}{ }
B.input[type=text]{ }
C.input(type=text){ }
D.input type=text{ }
第4题:
A.USER_TYPE_ATTRS
B.USER_TABLES
C.USER_TYPE_TABS
D.USER_TAB_COLUMNS
第5题:
如果希望想为表单元素类型为type且值为text的元素设置背景色,则用如下方法定义()。
A.input{type=text}{ }
B.input[type=text]{ }
C.input(type=text){ }
D.input type=text{ }
第6题:
在jQuery中,选择器$("tr.type")的作用是()。
A.获取应用了样式类type的所有的tr元素
B.获取设置了属性type的所有的tr元素
C.获取id属性值为type的所有的tr元素
D.获取type属性值为type的所有的tr元素