Oct 14, 2001 #1 ahhchu Programmer Sep 19, 2001 38 US I have seen procs to disable and enable the Start button. Ids there a simple call to hide the Start button. I have users that need to be controlled Thanks !
I have seen procs to disable and enable the Start button. Ids there a simple call to hide the Start button. I have users that need to be controlled Thanks !
Oct 14, 2001 2 #2 svanels MIS Aug 18, 1999 1,393 SR procedure HideStart(visible: boolean); var TaskbarHandle, ButtonHandle : HWND; begin TaskbarHandle := FindWindow('Shell_TrayWnd',nil); ButtonHandle := GetWindow(taskbarhandle,GW_CHILD); if visible = true then ShowWindow(buttonhandle,SW_RESTORE) //show button else ShowWindow(buttonhandle,SW_HIDE); //hide button end; Regards S. van Els SAvanEls@cq-link.sr Upvote 0 Downvote
procedure HideStart(visible: boolean); var TaskbarHandle, ButtonHandle : HWND; begin TaskbarHandle := FindWindow('Shell_TrayWnd',nil); ButtonHandle := GetWindow(taskbarhandle,GW_CHILD); if visible = true then ShowWindow(buttonhandle,SW_RESTORE) //show button else ShowWindow(buttonhandle,SW_HIDE); //hide button end; Regards S. van Els SAvanEls@cq-link.sr
Oct 16, 2001 1 Thread starter #3 ahhchu Programmer Sep 19, 2001 38 US Thanks for the help I really appreciate it !!! ahhchu! Upvote 0 Downvote