我编写以下代码来创建代码
Dim i, x, y As Integer
x = 30
y = 25
i = 0
For i = 0 To dt1.Rows.Count - 1
Dim chk As New CheckBox()
chk.Text = dt1.Rows(i)(0)
chk.Location = New Point(x, y)
chk.Font = fnt
chk.Width = 450
chk.ForeColor = Color.White
Me.Panel1.Controls.Add(chk)
chk.Name = "chk" & Convert.ToString(i)
Dim txt As New TextBox
txt.Location = New Point(x, y + 23)
txt.Font = fnt
txt.Multiline = True
txt.Height = 46
txt.Width = 400
Me.Panel1.Controls.Add(txt)
txt.Name = "txt" & Convert.ToString(i)
y = y + 69
我想要检查其checked属性为true的复选框的textvalue以及buttonLlick事件中的相应文本框。问题在于找到控件及其文本值。 任何人都可以提供帮助吗?感谢Advance.dt1是数据表。对于窗体应用程序
答案 0 :(得分:1)
生命周期中的代码在哪里?它应该在Page_Load之前,以便稍后获取控件值。你可以给它一个像
的ID chk.ID = myId;
要获得该值,您可以编写类似这样的内容
CheckBox cb =(CheckBox)Page.FindControl(myId);
答案 1 :(得分:1)
您是否尝试过循环控件?如下所示:
Dim ctrlName As String = String.Empty
For Each ctrl As Control In Me.Controls
If TypeOf ctrl Is CheckBox Then
Dim chk As CheckBox = CType(ctrl, CheckBox)
If chk.Checked Then
ctrlName = chk.Name.Replace("chk", "txt")
End If
ElseIf TypeOf ctrl Is TextBox AndAlso ctrl.Name = ctrlName Then
Dim txt As TextBox = CType(ctrl, TextBox)
Dim val As String = txt.Text
ctrlName = String.Empty
End If
Next
我没有测试过这个,只是一个想法。
答案 2 :(得分:1)
创建一个新的VB Windows窗体应用程序并添加一个按钮,然后用以下代码替换窗体的代码:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim txt As New TextBox
txt.Name = "myText"
txt.Left = Me.Width / 2
txt.Top = Me.Height / 2
txt.Text = "here is my text"
Me.Controls.Add(txt) 'This will add the dynamically created object
Dim anotherObj As TextBox = Me.Controls.Item("myText") 'because we know the name of the object we created before, we can retreive it back
MsgBox(anotherObj.Text) 'and we can also get the text we assigned earlier.
End Sub
End Class
最后两行可以放在另一个Sub()中,你仍会得到相同的结果。
答案 3 :(得分:0)
不要忘记你必须re-create all dynamic controls on postback
你的Page
只是一个记住的类,并且每个请求都会实例化一次,如果它没有重新创建这些控件以及回发请求上的关联处理程序,那么你就不会发生任何事情。
您需要在Page_Load
之前重新创建这些控件,您可以在Page_Init
中执行此操作或覆盖CreateChildControls
方法。
答案 4 :(得分:0)
Dim txtbranchname1 As TextBox
Private boxes(1) As TextBox
newbox = New TextBox
newbox.Size = New Drawing.Size(100, 20)
newbox.Name = "txtBranchName"
newbox.TabIndex = 1
newbox.Dock = DockStyle.Fill
AddHandler newbox.TextChanged, AddressOf TextBox_TextChanged
AddHandler newbox.KeyDown, AddressOf TextBox_Keydown
Me.TableLayoutPanel1.Controls.Add(newbox)
txtbranchname1 = Me.TableLayoutPanel1.Controls.Item("txtBranchName")
'Enter the value to textbox on runtime
MsgBox( txtbranchname1.Text)
'assign value to textbox
txtbranchname1.Text = "Something"