Page 1 of 1

MessageRequester to Front

Posted: Wed Aug 21, 2019 6:55 pm
by shadowvox
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.

Re: MessageRequester to Front

Posted: Wed Aug 21, 2019 7:09 pm
by Everything

Code: Select all

MessageBox_(0, "TOP", "Title", #MB_TOPMOST|#MB_ICONWARNING)

Code: Select all

MessageRequester("", "", ...|#MB_TOPMOST)

Re: MessageRequester to Front

Posted: Wed Aug 21, 2019 7:29 pm
by shadowvox
Everything wrote:

Code: Select all

MessageBox_(0, "TOP", "Title", #MB_TOPMOST|#MB_ICONWARNING)

Code: Select all

MessageRequester("", "", ...|#MB_TOPMOST)
Thank you.