答案:B
右图中双螺旋结构c表示的是
A.DNA
B.蛋白质
C.染色体
D.基因
在窗体上画两个文本框,其名称分别为Text1和Text2,然后编写如下事件过程: Private Sub Form_Load()ShowText1.Text=""Text2.Text=""Text2.SetFocus End Sub Private Sub Text2 KeyDown(KeyCode As Integer,Shift As Integer) Text1.Text=Text.Text+Chr(KeyCode-4) End Sub 程序运行后,如果在Text2文本框中输入“efghi”,则Text1文本框中的内容为 【11】 。