943,929 Members | Top Members by Rank

Ad:
Sep 13th, 2005
0

Making a Fullscreen form and hiding the Windows Taskbar

Expand Post »
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
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
sbedford is offline Offline
18 posts
since Jul 2005
Sep 14th, 2005
0

Re: Making a Fullscreen form and hiding the Windows Taskbar

to hide taskbar

Link to hide taskbar @ dancemammal.com

regards
mrmike
Reputation Points: 11
Solved Threads: 0
Light Poster
mrmike is offline Offline
41 posts
since May 2005
Sep 14th, 2005
0

Re: Making a Fullscreen form and hiding the Windows Taskbar

thanks - that worked really well, - just had to put in the code to show the taskbar again, as closing the program leaves it hidden!

S Bedford
Reputation Points: 10
Solved Threads: 0
Newbie Poster
sbedford is offline Offline
18 posts
since Jul 2005
Sep 15th, 2005
0

Re: Making a Fullscreen form and hiding the Windows Taskbar

I think you should also revert it back if the user switches (Alt-Tab) to another program, not just closing...
Reputation Points: 10
Solved Threads: 0
Newbie Poster
neverwinter is offline Offline
6 posts
since Aug 2005
Sep 15th, 2005
0

Re: Making a Fullscreen form and hiding the Windows Taskbar

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.
Reputation Points: 10
Solved Threads: 0
Newbie Poster
sbedford is offline Offline
18 posts
since Jul 2005
Sep 15th, 2005
0

Re: Making a Fullscreen form and hiding the Windows Taskbar

use the following and set the OnCloseQuery event to call it

Pascal and Delphi Syntax (Toggle Plain Text)
  1. procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean);
  2. begin
  3. application.Messagebox('Sorry you are unable to terminate this application','Close Request Received');
  4. CanClose:=False;
  5. end;

regards
mrmike
Reputation Points: 11
Solved Threads: 0
Light Poster
mrmike is offline Offline
41 posts
since May 2005
Sep 15th, 2005
0

Re: Making a Fullscreen form and hiding the Windows Taskbar

thanks - alt f4 is no longer a problem. I made the form of type stay on top to handle the alt-tab. Now its just the windows key i need to disable to stop the start menu popping up

S Bedford
Reputation Points: 10
Solved Threads: 0
Newbie Poster
sbedford is offline Offline
18 posts
since Jul 2005
Sep 16th, 2005
0

Re: Making a Fullscreen form and hiding the Windows Taskbar

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
Reputation Points: 10
Solved Threads: 0
Newbie Poster
sbedford is offline Offline
18 posts
since Jul 2005
Apr 21st, 2006
0

Re: Making a Fullscreen form and hiding the Windows Taskbar

Quote 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.
Reputation Points: 10
Solved Threads: 0
Newbie Poster
raam is offline Offline
3 posts
since Apr 2006

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in Pascal and Delphi Forum Timeline: Logging Events to Security
Next Thread in Pascal and Delphi Forum Timeline: Loading a .Dat into a Array of records help.





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC