Hi All, How do I remove a keybinding for a particular command from Visual Studio 2008? I tried the following but it does not work: Commands cmds = DTE.Commands; Command cmd = cmds..Item ("Window.PreviousTab", -1); object[] bindings = new object[1]; bindings[0] = ""; //This does not work cmd.Bindings = bindings; //This does not work either cmd.Bindings = ""; Thanks, Sundar