7,785
社区成员




Private Sub Form_Load()
Load Picture1(1)
With Picture1(1)
.Move 0, 0, 2000, 400
.Visible = True
End With
Load Label1(1)
With Label1(1)
Set .Container = Picture1(1)
.Move 0, 0, 1000, 200
.Caption = "abc"
.Visible = True
End With
End Sub