赞题库-背景图
单项选择题

{{*HTML*}}设在工程中定义了如下类型:
Type stutype
ino As Integer
stmame As String*20
strsex As String*1
smark As Single
End Type
在窗体上正确使用这个类型的是下列哪个操作 ____

A.Sub Command1_click()Dimstudent As StutypeWith student.ino=12.strname=smith.strsex=男.smark=89End WithEnd Sub
B.Sub Command1_Click()Dim student As StutypeWith student.ino=12.strname="smith".strsex="男".smark=89End WithEnd Sub
C.Sub Command1_Click()Dim student As StutypeWith Stutype.ino=12.strname="smith".strsex="男".smark=89End WithEnd Sub
D.Sub Command1_click()Dim student As StutypeWith student.ino=12.strname="smith".strsex="男".smark=89End studentEnd Sub