FrustratedGuy
Programmer
I use this to pass parameters to another exe file
[pre]ShellExecute(Application.Handle,'open',pwidechar(mFilename),pwidechar(mParams),nil,SW_SHOWNORMAL);[/pre]
That causes windows to open up a security message 'Do you want to allow this app to make changes to your device?' Which is fine, the problem is the security message is hidden and you have to click on it in the taskbar first.
Anyway to have that windows security message to pop up focused same way it does when you double-click on the file manually?
[pre]ShellExecute(Application.Handle,'open',pwidechar(mFilename),pwidechar(mParams),nil,SW_SHOWNORMAL);[/pre]
That causes windows to open up a security message 'Do you want to allow this app to make changes to your device?' Which is fine, the problem is the security message is hidden and you have to click on it in the taskbar first.
Anyway to have that windows security message to pop up focused same way it does when you double-click on the file manually?