I have a mainmenu on a form. I have included code to periodically change the value of one of the menu subitems of the mainmenu. The problem is that I can't seem to figure out how to tell it the value has changed and to refresh. This is what I have tried:
mitm_reports is the main parent of the menuitem I want to re-display.
Please help.
Code:
Private Sub mitm_reports_Select(ByVal sender As Object, ByVal e As System.EventArgs) Handles mitm_reports.Select
Me.mitm_xml.Visible = bAllowCheck
End Sub
mitm_reports is the main parent of the menuitem I want to re-display.
Please help.