I have a VB.NET MDI WinForms application. My users complain about the creep form (as they call it), every time you open a specific form in the main MDI window, it opens just below and to the right of the previously loaded location, that is, it starts in the upper left of the window and makes its way down to the right.
I have to agree with them that this is extremely annoying, is there a way to prevent this? Code to download forms:
frmPurchaseInvoiceSelect.Show()
frmPurchaseInvoiceSelect.MdiParent = Me
I can solve this problem by setting the initial positions of the forms in the "Guide", but then they simply open directly one above the other in the upper left corner of the screen.
Any other SO users coming across this?
Simon source
share