B b_boboci New member Joined Jul 12, 2008 Messages 2 Programming Experience 1-3 Jul 12, 2008 #1 I have a dynamic combobox, on Combobox.SelectedIndexChanged I want to give a value to a dynamic textbox, txtExample="aaaa"? Any idea? Thanks
I have a dynamic combobox, on Combobox.SelectedIndexChanged I want to give a value to a dynamic textbox, txtExample="aaaa"? Any idea? Thanks
JohnH VB.NET Forum Moderator Staff member Joined Dec 17, 2005 Messages 15,846 Location Norway Programming Experience 10+ Jul 12, 2008 #2 Use the variable reference if you kept it or look up the control by Name in the Controls collection you added it to. Upvote 0 Downvote
Use the variable reference if you kept it or look up the control by Name in the Controls collection you added it to.
B b_boboci New member Joined Jul 12, 2008 Messages 2 Programming Experience 1-3 Jul 12, 2008 #3 Thanks John I choosed my problem with the second way. Upvote 0 Downvote