Showing Form
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
Hello, I was wondering about how am I able to show another Form object from vb.net? Also how can I access of modify a property of an object e.g.: Form2.Text1.Text = "testing" Thanks Best Regards Emre YAZICI
This should work: You have to create an instance of the other form before you can change properties on it.
Dim otherForm As New Form2() otherForm.Show() otherForm.TextBox1.Text = "hello"
Beware the chickens, for in their silence, they plot... Life is too short to be taken seriously. -- Oscar Wilde