I have two forms. I have some txtboxes on one form and a button on another. When i click the button i want the text on the textboxes on the other form to change. How do I write a code that changes for example:
Private Sub cmd_Click() <---- this is on one form (the button)
text.Text = "Hello" <----- this is on another form (the textbox)
End Sub
XXD
Private Sub cmd_Click() <---- this is on one form (the button)
text.Text = "Hello" <----- this is on another form (the textbox)
End Sub
XXD