[求助]VB的命令按钮控件数组在哪里
本人VB菜鸟现在在做一个简单的计算器.但苦于找不到书上说的命令按钮控件数组Command1(0)-command(10).各位大虾可否告知. 还有计算器代码的下面一段也搞不很清楚能否解释一下.
private sub command1_click(index as integer)
if index=10 then
text1.text="0."
else
text1.text=command1(index).caption
end if
form1.tag=""
else
a=text1.text
text1.text=a&command1(index).caption
end if
end sub