vb中的load text()动态数组清空问题,急
请问我在vb中用了动态数组,
If Int(tdcount / 2) = tdcount / 2 Then
Load Text(tdcount / 2)
Text(tdcount / 2).Top = 300 + (tdcount / 2) * 350
End If
这样产生了相应数量的Text数组框,现在我想把这些Text数组框清空,怎么能做到呢?我很着急,谢谢啦!
参考答案:unload 动态Text数组框
一定是要用Load生成的才能Unload
语句:
Unload Text(你要卸载的Text的索引号)