请问控件中如何加载控件
我有一个窗体 窗体中有 Picturebox控件 Picturebox中用 command按钮
我用
For i = 1 To 9
Load Picturebox(i)
Picturebox(i).ZOrder (0)
Picturebox(i).Visible = True
Picturebox(i).Left = Picturebox(i - 1).Left + Picturebox(i).Width + 20
Next i
可以动态加载Picturebox控件
但是 我想做的是 在Picturebox控件中还要在加控件要怎么弄呢?
For i = 1 To 9
Load Picturebox(i)
Picturebox(i).ZOrder (0)
Picturebox(i).Visible = True
Picturebox(i).Left = Picturebox(i - 1).Left + Picturebox(i).Width + 20
for m=1 to 5
Load command(m)
command(i).ZOrder (0)
command(i).Visible = True
command(i).Left = command(i - 1).Left + command(i).Width + 20
next m
Next i
控件在控件中
[解决办法]
调整command的位置就行了,这与容器又没有什么关系。