私はWinFormsVBNETプログラミングの初心者です。実行時にテキストボックスを作成する必要があります。
私はこれを実装する方法の例を検索エンジンで見つけました:
Private Sub Command1_Click()
Dim TextControl As TextBox
ControlID = ControlID + 1
Load Text1(ControlID)
Set TextControl = Text1(ControlID)
With TextControl
.Left = (Text1(ControlID - 1).Left + Text1(ControlID - 1).Width) + 10
.Top = 20
.Width = 100
.Height = 20
.Visible = True
End With
End Sub
しかし、例のコードにはいくつか問題があります。
誰かが次のVBNETコード行を説明しますか?
Load Text1(ControlID)
Set TextControl = Text1(ControlID)
With TextControl
End With