The code that I Found in relation to this problem is:

 

I Hope this is what U were looking for

<snip>

Hiding and showing the Windows Taskbar
To hide the Windows Taskbar you must use a code like this:

procedure TForm1.Button1Click(Sender: TObject);
var
  hTaskBar :Thandle;
begin
  hTaskBar := FindWindow('Shell_TrayWnd',Nil);
  ShowWindow(hTaskBar,Sw_Hide);
end;
To Show the Windows Taskbar, you must use this code:


procedure TForm1.Button2Click(Sender: TObject);
var
  hTaskBar :Thandle;
begin
  hTaskBar := FindWindow('Shell_TrayWnd',Nil);
  ShowWindow(hTaskBar,Sw_Normal);
end;

</snip>

 

This is code that I got a while ago, and I didn't have time to check it
again.

 

Cheers 

Johan Fourie

 

Date: Wed, 04 May 2005 14:32:52 +0700

From: Bunyamin <[EMAIL PROTECTED]>

Subject: how to disable start button ?

To: [email protected]

Message-ID: <[EMAIL PROTECTED]>

Content-Type: text/plain; charset="us-ascii"; format=flowed

 

hi guys,

 

how to disable start button ?

including alt+tab,ctrl+esc.

 

my industrial application needs this requirement.

 

regards,

bunyamin


NOTICE: Please note that this eMail, and the contents thereof, is subject to 
the standard arivia.kom email disclaimer which may be found at:  
http://www.arivia.co.za/internet/disclaimer.htm.  If you cannot access the 
disclaimer through the URL attached, and you wish to receive a copy thereof, 
please send an eMail to [EMAIL PROTECTED] or call (011) 233-0800. You will 
receive the disclaimer by return email or fax.



__________________________________________________
Delphi-Talk mailing list -> [email protected]
http://www.elists.org/mailman/listinfo/delphi-talk

Reply via email to