Form1.TopMost Property
I am setting form1.topmost = true on the Form_Load event and it works, for the most part. However, I have fould that when I resize Form1 will no longer stay the topmost form.
This can be easily fixed by adding form1.topmost = true on the Form_Resize event. But, I have recently discovered that if I open a modal form, once it is closed topmost is lost. If I resize the columns in a grid located on Form1, topmost is lost.
Is there something I'm doing wrong or is there one place I can put form1.topmost = true so it will always be the topmost Application running.
Thanks

