Is there a way to bring a messagerequester to the front of all screens?
My program opens and fills some info into an excel sheet, then prompts the user for some info. The messagerequester that does so is always behind the excel sheet. I need it to come to the front.
MessageRequester to Front
-
Everything
- Enthusiast

- Posts: 225
- Joined: Sat Jul 07, 2018 6:50 pm
Re: MessageRequester to Front
Code: Select all
MessageBox_(0, "TOP", "Title", #MB_TOPMOST|#MB_ICONWARNING)Code: Select all
MessageRequester("", "", ...|#MB_TOPMOST)Re: MessageRequester to Front
Thank you.Everything wrote:Code: Select all
MessageBox_(0, "TOP", "Title", #MB_TOPMOST|#MB_ICONWARNING)Code: Select all
MessageRequester("", "", ...|#MB_TOPMOST)
