Hey how can i call a funtion on another form. Say i want to get FrmFrom1.txtText1.text when i click a button on frmForm2
like in vb 6 you could go form1.Text1.Text = Form2.Text1.Text
How do you do this in Vb .net
Printable View
Hey how can i call a funtion on another form. Say i want to get FrmFrom1.txtText1.text when i click a button on frmForm2
like in vb 6 you could go form1.Text1.Text = Form2.Text1.Text
How do you do this in Vb .net
As you will soon learn, VB.NET is a lot different. You can't do it like that any more. Now each form is a true object. Sorry.
But i did get a solution for that figured out with some help from guys on this forum. Check out this thread to see what i learned. :D