vb如何用代码在frame中动态创建控件

2024-11-26 05:40:06
推荐回答(2个)
回答1:

点击按钮后在Frame1中新建一个文本框的例子:

Private Sub Command1_Click()
Dim txt1 As TextBox
Set txt1 = Me.Controls.Add("VB.TextBox", "txt1")
Set txt1.Container = Frame1
txt1.Move 360, 360, 3600, 600
txt1.Text = "新建的文本框"
txt1.Visible = True
End Sub

回答2:

给你啊一个样子,你自己看。