Is there a way to intercept Alt+Esc key combination, in a Delphi application?
I tried the following:
begin
if ssAlt in Shift then
case Key of
27:
begin
ShowMessage('Alt + Esc is pressed');
end;
end;
end;
but Key gets a value of '18' (which is 'Alt') during the run-time...
Is there any way to find out in which order open forms are? (what's on top of what?)
For an application need I'm minimizing all forms by iterating through them using their indexes (which don't appear to be in any particular order and change all the time), then I normalize them again iterating...
We use Crystal Reports run-time component.
During the application run, when we open a report, it openes in a new window.
Can I control that window? Minimize it, for example.
Thank you.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.