|
分類:[VB.NET/VB2005 以降]
いつもお世話になります。 テキストボックスを動的に配置しました。 それで、別のsubでテキストに入力したいのですが、どうすれば良いのでしょう? どう呼ぶかがわかりません。インデックスで呼ぶ、単独で呼ぶ場合が知りたいです。 宜しくお願い致します。
Public Class Form1 Inherits System.Windows.Forms.Form Public kosu As Integer = 29 Private WithEvents tbox As TextBox Private WithEvents elabel As Label
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.AutoSize = True Me.SuspendLayout() Dim yoko_d As Integer Dim tmp_d As Integer Dim count_d As Integer For ii As Integer = 0 To kosu tbox = New TextBox Me.Controls.Add(tbox) tmp_d = tbox.Height * count_d * 2.3 + 40 Me.tbox.SetBounds(50 + yoko_d, tmp_d, 200, 19) If count_d = 9 Then count_d = 0 yoko_d = yoko_d + 250 Else count_d = count_d + 1 End If Next Me.ResumeLayout() End Sub End Class
|