G
Guest
I have a parent form and a child form. Both contain a textbox. Child also
has a button.
I want to open child with the following:
Dim mfrmFind As New frmFind
Private Sub OpenForm
AddHandler mfrmFind.Closing, AddressOf frmFindClosing
mfrmFind.TopMost = True
mfrmFind.Show()
End Sub
When I click the button on the child form, I want the text in the child
textbox to be written in the textbox of parent. I can't find a way to do
this. Any ideas?
I want child form to remain open and on top of parent form during this
process.
has a button.
I want to open child with the following:
Dim mfrmFind As New frmFind
Private Sub OpenForm
AddHandler mfrmFind.Closing, AddressOf frmFindClosing
mfrmFind.TopMost = True
mfrmFind.Show()
End Sub
When I click the button on the child form, I want the text in the child
textbox to be written in the textbox of parent. I can't find a way to do
this. Any ideas?
I want child form to remain open and on top of parent form during this
process.