I'm developing in vb. net applications for Microsoft Word and forms called via a ribbon. I recall the forms and attribute the value Me.Topmost = true so that my form remains on top of the Word document. However, when Word messages appear they can sometimes end up under my form, and only by pressing ESC can I make the messages under the form disappear and regain control of them. How can I work around this problem? Thanks and I hope I made myself understood. I'm learning.
Dim Form1 As New Form1 Form1.Visible = True Form1.TopMost = true