Some items can be removed by registry setting:
http://www.jacksonville.ne
in section
Removing Start and Explorer Menu Options
Milan
Main Topics
Browse All Topicsis it possible to hide and show all of the text in the start menu, including Programs and Accessories?
if so could someone post some code that could do this
thanx in advanve
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Some items can be removed by registry setting:
http://www.jacksonville.ne
in section
Removing Start and Explorer Menu Options
Milan
i can hide the start button, shutdown, run, find etc....go to www.chunyong.com and download the system administrator. if u want the source, email me.
Taskbar, start menu items, start button - Enable/disable
uses : StdCtrls, ExtCtrls, mmsystem, registry
<<<Enabling>>>
var
Hw : HWND;
HBut : HWND;
Wnd : HWND;
begin
ShowWindow(FindWindow('She
SW_SHOWNA); //taskbar
end;
var
Hw : HWND;
HBut : HWND;
Wnd : HWND;
begin
HW := FindWindow('Shell_Traywnd'
HBut := FindWindowEx(hw, 0, 'Button', nil);
ShowWindow(hBut, SW_SHOW); //start button
end;
var
reg:tregistry;
begin
Reg:=TRegistry.Create;
Reg.RootKey:=HKEY_CURRENT_
Reg.OpenKey('Software\Micr
Reg.deletevalue('NoRun');
reg.closekey; // Run
end;
var
reg:tregistry;
begin
Reg:=TRegistry.Create;
Reg.RootKey:=HKEY_CURRENT_
Reg.OpenKey('Software\Micr
Reg.deletevalue('NoFind');
reg.closekey; // Find
end;
var
reg:tregistry;
begin
Reg:=TRegistry.Create;
Reg.RootKey:=HKEY_CURRENT_
Reg.OpenKey('Software\Micr
Reg.deletevalue('NoClose')
reg.closekey; // Shutdown
end;
<<<Disabling>>>
var
HW : HWND;
HBUT : HWND;
Wnd : HWND;
begin
ShowWindow(FindWindow('She
end;
var
HW : HWND;
HBUT : HWND;
Wnd : HWND;
begin
HW := FindWindow('Shell_Traywnd'
HBut := FindWindowEx(hw, 0, 'Button', nil);
ShowWindow(hBut, SW_HIDE); // Start button
end;
var
reg:tregistry;
begin
Reg:=TRegistry.Create;
Reg.RootKey:=HKEY_CURRENT_
Reg.createKey('Software\Mi
Reg.OpenKey('Software\Micr
Reg.WriteString('NoRun','1
reg.closekey; // run
end;
var
reg:tregistry;
begin
Reg:=TRegistry.Create;
Reg.RootKey:=HKEY_CURRENT_
Reg.createKey('Software\Mi
Reg.OpenKey('Software\Micr
Reg.WriteString('NoFind','
reg.closekey; // find
end;
var
reg:tregistry;
begin
Reg:=TRegistry.Create;
Reg.RootKey:=HKEY_CURRENT_
Reg.createKey('Software\Mi
Reg.OpenKey('Software\Micr
Reg.WriteString('NoClose',
reg.closekey; // shut down
end;
* Those Find, Run, Shutdown might need a reboot before they show or hide themselves. Find me should u need to do more than that, see my System Administrator to see what i can help u with.
Business Accounts
Answer for Membership
by: CesarioPosted on 2001-04-10 at 08:59:38ID: 6000461
Hi Steven,
er.ch/en/s howcode.ph p?id=328
om/support /kb/articl es/Q168/9/ 20.ASP
AFAIK, its not possible to hide the text in the start menu.
try this links...
hide and disable the start button and the start menu
http://www.swissdelphicent
Disabling Documents Folder on the Start Menu
http://support.microsoft.c
best regards
Cesario