var
i : integer;
begin
FDelphiMenu := (BorlandIDEServices as INTAServices).MainMenu;
i := 0;
while i < FDelphiMenu.Items.Count do begin
if Pos('KsProjMng',FDelphiMenu.Items.Caption) > 0 then begin
FDelphiMenu.Items.Delete(i);
end else begin
Inc(i);
end;
end;
FPaletteMenu := TMenuItem.Create(Self);
FPaletteMenu.AutoHotkeys := maManual;
FPaletteMenu.Caption := '&KsProjMng';
FDelphiMenu.Items.Insert(9, FPaletteMenu);
[ Last edited by lcj8888 on 2006-1-4 at 09:21 ]Author:
shenloqi Time: 2006-1-4 09:47