Hi guys
I am created two projects with two different executive files, which the one are for the normal program to create and the other one is for an update. I want to separate these dialogs. I have already added the update executive file as reference in my program. I would like you to help me to resolve this issue as I have problem with open the update dialog when I clicked on the menu item. When I clicked the menu item which are suppose to close the program and load the update form from the update executive file but they did not show up.
Code:
Private Sub updatetest_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles updatetest.Click
Me.Close()
End
Dim update As New testUpdate.testUpdates
update.ShowDialog()
End Sub
Please can you help me how do I correct my statements which I would close the program and run the update form??
Thanks,
Stephen