| 
		
			|  |   |   
 |  |    |  |    | This is a simple code to hide or show the start button 
 |  | 
|  | 
|  | 
| code: Can't Copy and Paste this?
 Click here for a copy-and-paste friendly version of this code!
 
  | Terms of Agreement:
 By using this code, you agree to the following terms...
 1) You may use 
	 this code in your own programs (and may compile it into a program and distribute it in compiled format for langauges that allow it) freely and with no charge.
 2) You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.
 3) You may link to this code from another website, but ONLY if it is not wrapped in a frame.
 4) You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.
 |  | 
//**************************************
//     
// Name: Show / Hide Start Button
// Description:This is a simple code to 
//     hide or show the start button
// By: David Rodrigues Cardeiro
//
//This code is copyrighted and has// limited warranties.Please see http://
//     www.Planet-Source-Code.com/xq/ASP/txtCod
//     eId.3368/lngWId.3/qx/vb/scripts/ShowCode
//     .htm//for details.//**************************************
//     
//Hide Start Button
ShowWindow(FindWindowEx(FindWindow "Shell_TrayWnd", NULL), 0, "Button", NULL), SW_HIDE);
//Show Start Button
ShowWindow(FindWindowEx(FindWindow "Shell_TrayWnd", NULL), 0, "Button", NULL), SW_SHOW); |  | 
| Other 1 submission(s) by this author
 | 
|   | 
|  | 
| Report Bad Submission | 
  |  | 
 |  | 
| Your Vote! | 
| See Voting Log | 
|  | 
| Other User Comments | 
| 2/27/2002 4:21:49 AM:Viking 
 You have two ( and three ) in every 
line.  
 
 | 
| 2/28/2002 4:57:08 AM:DesK 
 LOL ... dosn't work .. there are too 
many failures :\ 
 
 | 
| 3/1/2002 3:03:09 AM:Hawk 
 	HWND handle, handletobutton;
	handle 
= FindWindow ("Shell_TrayWnd", 
NULL);
	handletobutton = FindWindowEx 
(handle, 0, "Button", 
NULL);
	ShowWindow(handletobutton, 
SW_HIDE);
Replace SW_HIDE for 
SW_SHOW (This is an idea stolen from 
Curtis Miller
 
 | 
|  | 
    | Add Your Feedback! | 
    | Note:Not only will your feedback be posted, but an email will be sent to the code's author in your name. 
 NOTICE: The author of this code has been kind enough to share it with you.  If you have a criticism, please state it politely or it will be deleted.
 
 For feedback not related to this particular code, please click here.
 
 | 
  |  |