Passing Info from textboxes in different forms
Hi,
Im looking to pass information from a number of textboxes in one form to a number of textboxes in another form using Visual Basic 2008. I used to code in vb6 a few years back but have forgotten most of what I learned. I imagine that this is a basic enough question. Any help would be greatly appreciated.
Adam.
Re: Passing Info from textboxes in different forms
lol Code:
Dim tValue as String = Textbox1.Text
Form2.Textbox1.Text = tValue
Form2.Show()
Re: Passing Info from textboxes in different forms
You have a variety of alternatives to choose from. Here's a thread on them:
http://www.vbforums.com/showthread.php?t=466253