Please support our Pascal and Delphi advertiser: Programming Forums
![]() |
•
•
Join Date: Jul 2005
Posts: 18
Reputation:
Rep Power: 4
Solved Threads: 0
Hi
Just wondering if it is possible to do this? I have a form that auto-resizes dependent on the resolution of the pc it is run on, but at some resolutions, the windows taskbar overlaps the form buttons. Is there any way to hide the windows taskbar, or do I just have to resize the form and make it's height 60 pixels less or something?
Thanks
S Bedford
Just wondering if it is possible to do this? I have a form that auto-resizes dependent on the resolution of the pc it is run on, but at some resolutions, the windows taskbar overlaps the form buttons. Is there any way to hide the windows taskbar, or do I just have to resize the form and make it's height 60 pixels less or something?
Thanks
S Bedford
•
•
Join Date: Jul 2005
Posts: 18
Reputation:
Rep Power: 4
Solved Threads: 0
Ive got the form set to stay on top - the program i'm making is like an entire frontend system, and I want to hide Windows as completely as is possible, so in theory, the form should keep itself at the front.
On that note though, is there any way to disable system keys in all versions of Windows in one go? Such as alt-f4, ctrl-esc, alt-tab the winkey etc? I can only find ways to do it on win98 and 2000, but these methods only stop the keys in that particular version of Windows.
On that note though, is there any way to disable system keys in all versions of Windows in one go? Such as alt-f4, ctrl-esc, alt-tab the winkey etc? I can only find ways to do it on win98 and 2000, but these methods only stop the keys in that particular version of Windows.
•
•
Join Date: May 2005
Posts: 41
Reputation:
Rep Power: 4
Solved Threads: 0
use the following and set the OnCloseQuery event to call it
regards
mrmike
procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean);
begin
application.Messagebox('Sorry you are unable to terminate this application','Close Request Received');
CanClose:=False;
end;regards
mrmike
•
•
Join Date: Apr 2006
Posts: 3
Reputation:
Rep Power: 0
Solved Threads: 0
•
•
•
•
Originally Posted by sbedford
disabled most of the windows keys - alt tab, and the winkey in windows 98 and 2000, but does anyone know of a way to disable these keys in winxp? Preferably a way using existing delphi coding - ive only found external dll files that can do it so far
Thanks
S Bedford
Sir,
I a require all the above suggestions you have given for Linux operating system.Can you please help.
I want to hide the task bar of linux programmatically.I am using java.Is it possible to do it through a shell script.
![]() |
Similar Threads
Other Threads in the Pascal and Delphi Forum
Other Threads in the Pascal and Delphi Forum
- Previous Thread: Logging Events to Security
- Next Thread: Loading a .Dat into a Array of records help.
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)





Linear Mode