I have a project where two UserForms are shown in succession. Form1 autocloses and then Form2 is loaded almost immediately afterwards.
But if the user presses escape while Form1 is shown, Form1 closes and Form2 never appears.
How do I work around this problem while still allowing Form1 to be closed with escape key?
Is there something I could code in between Form1.Show and Form2.Show to help negate the Escape key action on Form1 carrying onto Form2?
(Not sure is this helps: Form1 is shown Modal. Form2 is shown Modeless. I want to keep Form2 as modeless.)
Bookmarks