Making a Fullscreen form and hiding the Windows Taskbar

Reply

Join Date: Jul 2005
Posts: 18
Reputation: sbedford is an unknown quantity at this point 
Solved Threads: 0
sbedford sbedford is offline Offline
Newbie Poster

Making a Fullscreen form and hiding the Windows Taskbar

 
0
  #1
Sep 13th, 2005
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
Reply With Quote Quick reply to this message  
Join Date: May 2005
Posts: 41
Reputation: mrmike is an unknown quantity at this point 
Solved Threads: 0
mrmike mrmike is offline Offline
Light Poster

Re: Making a Fullscreen form and hiding the Windows Taskbar

 
0
  #2
Sep 14th, 2005
to hide taskbar

Link to hide taskbar @ dancemammal.com

regards
mrmike
Reply With Quote Quick reply to this message  
Join Date: Jul 2005
Posts: 18
Reputation: sbedford is an unknown quantity at this point 
Solved Threads: 0
sbedford sbedford is offline Offline
Newbie Poster

Re: Making a Fullscreen form and hiding the Windows Taskbar

 
0
  #3
Sep 14th, 2005
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
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 6
Reputation: neverwinter is an unknown quantity at this point 
Solved Threads: 0
neverwinter neverwinter is offline Offline
Newbie Poster

Re: Making a Fullscreen form and hiding the Windows Taskbar

 
0
  #4
Sep 15th, 2005
I think you should also revert it back if the user switches (Alt-Tab) to another program, not just closing...
Reply With Quote Quick reply to this message  
Join Date: Jul 2005
Posts: 18
Reputation: sbedford is an unknown quantity at this point 
Solved Threads: 0
sbedford sbedford is offline Offline
Newbie Poster

Re: Making a Fullscreen form and hiding the Windows Taskbar

 
0
  #5
Sep 15th, 2005
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.
Reply With Quote Quick reply to this message  
Join Date: May 2005
Posts: 41
Reputation: mrmike is an unknown quantity at this point 
Solved Threads: 0
mrmike mrmike is offline Offline
Light Poster

Re: Making a Fullscreen form and hiding the Windows Taskbar

 
0
  #6
Sep 15th, 2005
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
Reply With Quote Quick reply to this message  
Join Date: Jul 2005
Posts: 18
Reputation: sbedford is an unknown quantity at this point 
Solved Threads: 0
sbedford sbedford is offline Offline
Newbie Poster

Re: Making a Fullscreen form and hiding the Windows Taskbar

 
0
  #7
Sep 15th, 2005
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
Reply With Quote Quick reply to this message  
Join Date: Jul 2005
Posts: 18
Reputation: sbedford is an unknown quantity at this point 
Solved Threads: 0
sbedford sbedford is offline Offline
Newbie Poster

Re: Making a Fullscreen form and hiding the Windows Taskbar

 
0
  #8
Sep 16th, 2005
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
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 3
Reputation: raam is an unknown quantity at this point 
Solved Threads: 0
raam raam is offline Offline
Newbie Poster

Re: Making a Fullscreen form and hiding the Windows Taskbar

 
0
  #9
Apr 21st, 2006
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.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Pascal and Delphi Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC