I have a question about forms that are on top of other forms, I call them popups. I want the form to stay on top, but I haven't had good results with using topmost because then it might hide other things like messagebox and other windows apps. So, I tried the following code:
Me.Owner = ActiveForm
Me.CenterToParent()
This works fine but then if you change a form it "stays" with the previous form. Two questions, one, is there a better way? Two, if not, how can I detect the activeform has changed and then tell the popup to "look" at this new form?
By the way, I don't want show dialog as I want to be able to do other things.
James