Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have a form open that relates to a specific document.
If I switch documents I would either like the form to either close or update contents to the current document.
How do I globally define a form to be able to handle it in the reactor? At the moment I only know how to locally define a form and close it.
Private Sub btn_Click(sender As Object, e As EventArgs) Handles btn_Click Dim frm As Windows.Forms.Form = New frmMyFrm frm.Show() End Sub
Solved! Go to Solution.