Visual Studio CommandBar (Toolbar) Recreate
От: adontz Грузия http://adontz.wordpress.com/
Дата: 23.05.05 15:52
Оценка: 14 (3) -1
Когда меня в очередной раз достало, что при малейшем глюке все панели инструментов сбрасываются (а надо заметить, что меня это уже прилично затрахало) я написал сей макрос

Imports EnvDTE
Imports System.Diagnostics

Public Module CommandBarReCreate

    Public Sub ReCreate()
        Dim commandBar As Microsoft.Office.Core.CommandBar

        Try
            DTE.CommandBars().Item("adontz").Delete()
        Catch
        End Try

        commandBar = DTE.CommandBars().Add("adontz", Microsoft.Office.Core.MsoBarPosition.msoBarTop, 0, False)
        commandBar.Visible() = True

        DTE.Commands().Item("File.SaveAll", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("File.ViewinBrowser", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("Edit.Undo", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("Edit.Redo", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("Debug.StartWithoutDebugging", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("Debug.Start", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("Debug.StopDebugging", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("Debug.BreakAll", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("Debug.ShowNextStatement", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("Debug.RunToCursor", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("Debug.StepInto", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("Debug.StepOver", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("Debug.StepOut", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("Debug.SetNextStatement", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("Build.BuildSolution", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("Build.Compile", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("Build.Cancel", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("VisualAssistX.EnableDisable", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("VisualAssistX.Options", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
        DTE.Commands().Item("Help.SyncContents", 0).AddControl(commandBar, commandBar.Controls().Count + 1)
    End Sub

End Module


Полный список именованных комманд ниже.
Чтоб поглядеть на НЕ именнованные команды (которые надо по GUID'ам идентифицировать) можете воспользоваться EventWatcher Visual Studio Add-in
http://www.microsoft.com/downloads/details.aspx?FamilyId=EE1C9710-6DF7-4F3F-A5AE-425A478DDEEB&displaylang=en

В благодарность мне имя Toolbar не меняйте

Список комманд

Action.Add
Action.Add.NETFrameworkLaunchCondition
Action.AddAction
Action.AddDialog
Action.AddFileLaunchCondition
Action.AddFileSearch
Action.AddFileType
Action.AddInternetInformationServicesLaunchCondition
Action.AddLaunchCondition
Action.AddRegistryLaunchCondition
Action.AddRegistrySearch
Action.AddWindowsInstallerLaunchCondition
Action.AddWindowsInstallerSearch
Action.Assembly
Action.BinaryValue
Action.CommonFilesFolder
Action.CreateNewShortcut
Action.CreateShortcuttoSelectedItems
Action.CustomFolder
Action.Dependencies
Action.Details
Action.DWORDValue
Action.EnvironmentStringValue
Action.ExcludeFilter
Action.File
Action.Folder
Action.FontsFolder
Action.GlobalAssemblyCacheFolder
Action.Import
Action.Key
Action.LargeIcons
Action.List
Action.ModuleRetargetableFolder
Action.MoveDown
Action.MoveUp
Action.NewKey
Action.Outputs
Action.ProgramFilesFolder
Action.ProjectOutput
Action.SetAsDefault
Action.SmallIcons
Action.StringValue
Action.SystemFolder
Action.UsersApplicationDataFolder
Action.UsersDesktop
Action.UsersFavoritesFolder
Action.UsersPersonalDataFolder
Action.UsersProgramsMenu
Action.UsersSendToMenu
Action.UsersStartMenu
Action.UsersStartupFolder
Action.UsersTemplateFolder
Action.WebCustomFolder
Action.WindowsFolder
Build.BatchBuild
Build.BuildOnlyProject
Build.BuildSelection
Build.BuildSolution
Build.Cancel
Build.CleanOnlyProject
Build.CleanSelection
Build.CleanSolution
Build.Compile
Build.ConfigurationManager
Build.Deploy
Build.DeploySelection
Build.DeploySolution
Build.Link
Build.ProjectPickerBuild
Build.ProjectPickerRebuild
Build.RebuildOnlyProject
Build.RebuildSelection
Build.RebuildSolution
Build.RefreshDependencies
Data.ConfigureDataAdapter
Data.DatasetProperties
Data.GenerateDataset
Data.PreviewData
Data.ViewDatasetSchema
Database.AddtoSourceControl
Database.ChangeLogin
Database.CloseConnection
Database.Design
Database.Edit
Database.ExportData
Database.GenerateCreateScript
Database.ModifyConnection
Database.NewDiagram
Database.NewInlineFunction
Database.NewPackageBody
Database.NewPackageSpecification
Database.NewScalarvaluedFunction
Database.NewStoredProcedure
Database.NewTable
Database.NewTablevaluedFunction
Database.NewTrigger
Database.NewView
Database.RemovefromSourceControl
Database.RetrieveData
Database.Run
Database.RunSelection
Database.StepInto
Debug.AddWatch
Debug.ApplyCodeChanges
Debug.Autos
Debug.BreakAll
Debug.BreakpointProperties
Debug.Breakpoints
Debug.CallStack
Debug.ClearAllBreakpoints
Debug.DetachAll
Debug.DisableAllBreakpoints
Debug.Disassembly
Debug.EnableAllBreakpoints
Debug.EnableBreakpoint
Debug.EvaluateStatement
Debug.Exceptions
Debug.GoToDisassembly
Debug.Immediate
Debug.InsertBreakpoint
Debug.ListCallStack
Debug.ListDisassembly
Debug.ListMemory
Debug.ListPrograms
Debug.ListThreads
Debug.Locals
Debug.Memory1
Debug.Memory2
Debug.Memory3
Debug.Memory4
Debug.Modules
Debug.NewBreakpoint
Debug.Print
Debug.Processes
Debug.QuickWatch
Debug.Registers
Debug.Restart
Debug.RunningDocuments
Debug.RunToCursor
Debug.SaveDumpAs
Debug.SetCurrentProgram
Debug.SetCurrentStackFrame
Debug.SetCurrentThread
Debug.SetNextStatement
Debug.SetRadix
Debug.ShowNextStatement
Debug.Start
Debug.StartWithoutDebugging
Debug.StepBy
Debug.StepByInstruction
Debug.StepByLine
Debug.StepByStatement
Debug.StepInto
Debug.StepOut
Debug.StepOver
Debug.StopApplyingCodeChanges
Debug.StopDebugging
Debug.This
Debug.Threads
Debug.ToggleBreakpoint
Debug.ToggleDisassembly
Debug.Watch1
Debug.Watch2
Debug.Watch3
Debug.Watch4
Diagram.AddRelatedTables
Diagram.AddTable
Diagram.ArrangeSelection
Diagram.ArrangeTables
Diagram.AutosizeSelectedTables
Diagram.ColumnNames
Diagram.Custom
Diagram.DeleteColumn
Diagram.GenerateChangeScript
Diagram.InsertColumn
Diagram.Keys
Diagram.ModifyCustom
Diagram.NameOnly
Diagram.NewTable
Diagram.NewTextAnnotation
Diagram.SetFont
Diagram.SetPrimaryKey
Diagram.ShowRelationshipLabels
Diagram.Standard
Edit.AddEventHandler
Edit.AddResource
Edit.BreakLine
Edit.Capitalize
Edit.CharLeft
Edit.CharLeftExtend
Edit.CharLeftExtendColumn
Edit.CharRight
Edit.CharRightExtend
Edit.CharRightExtendColumn
Edit.CharTranspose
Edit.CheckMnemonics
Edit.ClearAll
Edit.ClearBookmarks
Edit.Client
Edit.CollapseAllincurrentblock
Edit.CollapseBlockcurrentblock
Edit.CollapsetoDefinitions
Edit.CommentSelection
Edit.CompleteWord
Edit.Copy
Edit.CopyDiagramtoClipboard
Edit.CopySQLScript
Edit.Cut
Edit.CycleClipboardRing
Edit.DecreaseLineIndent
Edit.Delete
Edit.DeleteBackwards
Edit.DeleteBlankLines
Edit.DeletefromDatabase
Edit.DeleteHorizontalWhiteSpace
Edit.DeleteToBOL
Edit.DeleteToEOL
Edit.DeleteVersionInfoBlock
Edit.DocumentEnd
Edit.DocumentEndExtend
Edit.DocumentStart
Edit.DocumentStartExtend
Edit.DoubleClick
Edit.EditIDs
Edit.EditNames
Edit.Find
Edit.FindinFiles
Edit.FindNext
Edit.FindNextSelected
Edit.FindPrevious
Edit.FindPreviousSelected
Edit.FindSymbol
Edit.First
Edit.FormatDocument
Edit.FormatSelection
Edit.GoTo
Edit.GotoBrace
Edit.GotoBraceExtend
Edit.GoToDeclaration
Edit.GoToDefinition
Edit.GoToFindCombo
Edit.GotoNextLocation
Edit.GotoOutputWindowNextLocation
Edit.GotoOutputWindowPrevLocation
Edit.GotoPreviousLocation
Edit.GoToReference
Edit.HiddenText
Edit.HideAdvancedCompletionMembers
Edit.HideSelection
Edit.IncreaseLineIndent
Edit.IncrementalSearch
Edit.InsertFileAsText
Edit.InsertNew
Edit.InsertSeparator
Edit.InsertTab
Edit.Last
Edit.LineCut
Edit.LineDelete
Edit.LineDown
Edit.LineDownExtend
Edit.LineDownExtendColumn
Edit.LineEnd
Edit.LineEndExtend
Edit.LineEndExtendColumn
Edit.LineLastChar
Edit.LineLastCharExtend
Edit.LineOpenAbove
Edit.LineOpenBelow
Edit.LineStart
Edit.LineStartAfterIndentation
Edit.LineStartAfterIndentationExtend
Edit.LineStartAfterIndentationNext
Edit.LineStartAfterIndentationPrev
Edit.LineStartExtend
Edit.LineStartExtendColumn
Edit.LineTranspose
Edit.LineUp
Edit.LineUpExtend
Edit.LineUpExtendColumn
Edit.ListMembers
Edit.MakeLowercase
Edit.MakeUppercase
Edit.MatchCase
Edit.MoveControlDown
Edit.MoveControlDownGrid
Edit.MoveControlLeft
Edit.MoveControlLeftGrid
Edit.MoveControlRight
Edit.MoveControlRightGrid
Edit.MoveControlUp
Edit.MoveControlUpGrid
Edit.New
Edit.NewAccelerator
Edit.NewString
Edit.NewVersionInfoBlock
Edit.NextBookmark
Edit.NextKeyTyped
Edit.OpenFile
Edit.OvertypeMode
Edit.PageDown
Edit.PageDownExtend
Edit.PageUp
Edit.PageUpExtend
Edit.ParameterInfo
Edit.Paste
Edit.PasteasHTML
Edit.PasteMovesCaret
Edit.PreviousBookmark
Edit.QuickFindSymbol
Edit.QuickInfo
Edit.Redo
Edit.RegularExpression
Edit.Remove
Edit.Replace
Edit.ReplaceinFiles
Edit.ResourceIncludes
Edit.ResourceSymbols
Edit.ReverseCancel
Edit.ReverseIncrementalSearch
Edit.Row
Edit.ScrollColumnLeft
Edit.ScrollColumnRight
Edit.ScrollLineBottom
Edit.ScrollLineCenter
Edit.ScrollLineDown
Edit.ScrollLineTop
Edit.ScrollLineUp
Edit.ScrollPageDown
Edit.ScrollPageUp
Edit.SelectAll
Edit.SelectAllColumns
Edit.SelectCurrentWord
Edit.SelectionCancel
Edit.SelectNextControl
Edit.SelectPreviousControl
Edit.SelectToLastGoBack
Edit.Server
Edit.ShowGrid
Edit.ShowTileGrid
Edit.SizeControlDown
Edit.SizeControlDownGrid
Edit.SizeControlLeft
Edit.SizeControlLeftGrid
Edit.SizeControlRight
Edit.SizeControlRightGrid
Edit.SizeControlUp
Edit.SizeControlUpGrid
Edit.StartAutomaticOutlining
Edit.StopHidingCurrent
Edit.StopOutlining
Edit.StopSearch
Edit.SwapAnchor
Edit.TabifySelection
Edit.TabLeft
Edit.ToggleAllOutlining
Edit.ToggleBookmark
Edit.ToggleCase
Edit.ToggleOutliningExpansion
Edit.ToggleTaskListShortcut
Edit.ToggleWordWrap
Edit.UncommentSelection
Edit.Undo
Edit.UntabifySelection
Edit.Up
Edit.ViewAsPopup
Edit.ViewBottom
Edit.ViewBottomExtend
Edit.ViewTop
Edit.ViewTopExtend
Edit.ViewWhiteSpace
Edit.WholeWord
Edit.Wildcard
Edit.WordDeleteToEnd
Edit.WordDeleteToStart
Edit.WordNext
Edit.WordNextExtend
Edit.WordNextExtendColumn
Edit.WordPrevious
Edit.WordPreviousExtend
Edit.WordPreviousExtendColumn
Edit.WordTranspose
File.AddExistingItem
File.AddExistingProject
File.AddExistingProjectFromWeb
File.AddNewItem
File.AddNewProject
File.AddProjectFromSourceControl
File.AddSelectedProjectstoSourceControl
File.AddSolutiontoSourceControl
File.AdvancedSaveOptions
File.BrowseWith
File.ChangeSourceControl
File.CheckIn
File.CheckInDynamicSilent
File.CheckInSilent
File.CheckOut
File.CheckoutDynamicSilent
File.CheckOutSilent
File.Close
File.CloseSolution
File.CompareVersions
File.Convert
File.ExcludeFromSourceControl
File.Exit
File.FileFromWeb
File.Get
File.GetLatestVersion
File.GetLatestVersionDynamicSilent
File.History
File.NewBlankSolution
File.NewFile
File.NewProject
File.OpenFile
File.OpenFromSourceControl
File.OpenProject
File.OpenProjectFromWeb
File.OpenSolution
File.PageSetup
File.Print
File.PrintSubtopics
File.ProjectPickerMoveInto
File.Properties
File.RefreshStatus
File.Rename
File.SaveAll
File.SaveCopyofSelectedItemsAs
File.SaveSelectedItems
File.SaveSelectedItemsAs
File.SaveSelection
File.SelectProjectTemplate
File.Share
File.SourceControlManager
File.UndoCheckout
File.ViewinBrowser
Format.AlignBottoms
Format.AlignCenters
Format.AlignLefts
Format.AlignMiddles
Format.AlignRights
Format.AligntoGrid
Format.AlignTops
Format.BackgroundColor
Format.Bold
Format.BringtoFront
Format.BuildStyle
Format.ButtonBottom
Format.ButtonRight
Format.CenterHorizontal
Format.CenterHorizontally
Format.CenterVertical
Format.CenterVertically
Format.CheckMnemonics
Format.ConverttoHyperlink
Format.DecreaseHorizontalSpacing
Format.DecreaseIndent
Format.DecreaseVerticalSpacing
Format.DocumentStyles
Format.FixedWidth
Format.Flip
Format.ForegroundColor
Format.GuideSettings
Format.IncreaseHorizontalSpacing
Format.IncreaseIndent
Format.IncreaseVerticalSpacing
Format.InsertBookmark
Format.Italic
Format.Justify
Format.JustifyCenter
Format.JustifyLeft
Format.JustifyRight
Format.LockControls
Format.LockElement
Format.MakeHorizontalSpacingEqual
Format.MakeSameHeight
Format.MakeSameSize
Format.MakeSameWidth
Format.MakeVerticalSpacingEqual
Format.Optimize
Format.RemoveHorizontalSpacing
Format.RemoveVerticalSpacing
Format.SendtoBack
Format.ShowGrid
Format.SizetoContent
Format.SizetoGrid
Format.SnaptoGrid
Format.SpaceAcross
Format.SpaceDown
Format.Stretch
Format.Subscript
Format.Superscript
Format.TabOrder
Format.TestDialog
Format.ToggleGuides
Format.Underline
Frames.DeleteFrame
Frames.EditFrameinNewWindow
Frames.NewBottomFrame
Frames.NewLeftFrame
Frames.NewRightFrame
Frames.NewTopFrame
Frames.SeamlessJoinBetweenFrames
Frames.SetPageforFrame
Help.About
Help.CheckforUpdates
Help.Contents
Help.DynamicHelp
Help.EditFilters
Help.F1Help
Help.HelponHelp
Help.Index
Help.Indexresults
Help.Nexttopic
Help.Previoustopic
Help.Search
Help.Searchresults
Help.ShowStartPage
Help.ShowTaskHelp
Help.SyncContents
Help.TechnicalSupport
Help.WindowHelp
Image.AdjustColors
Image.AirbrushTool
Image.BrushTool
Image.ColorSelectionTool
Image.CopyAndOutlineSelection
Image.CurveTool
Image.DeleteImageType
Image.DrawOpaque
Image.EllipseTool
Image.EraseTool
Image.FilledEllipseTool
Image.FilledRectangleTool
Image.FilledRoundedRectangleTool
Image.FillTool
Image.FlipHorizontal
Image.FlipVertical
Image.GridSettings
Image.InvertColors
Image.IrregularSelectionTool
Image.LargerBrush
Image.LineTool
Image.LoadPalette
Image.MagnificationTool
Image.Magnify
Image.MiscCursor1
Image.MiscCursor2
Image.MiscCursor3
Image.MiscCursor4
Image.MiscCursor5
Image.MiscCursor6
Image.MiscCursor7
Image.MiscCursor8
Image.MiscCursor9
Image.MiscIcon1
Image.MiscIcon2
Image.MiscIcon3
Image.MiscIcon4
Image.MiscIcon5
Image.MiscIcon6
Image.MiscIcon7
Image.MiscIcon8
Image.MiscIcon9
Image.MoreCursors
Image.MoreIcons
Image.NewImageType
Image.NextColor
Image.NextRightColor
Image.OutlinedEllipseTool
Image.OutlinedRectangleTool
Image.OutlinedRoundedRectangleTool
Image.PencilTool
Image.PreviousColor
Image.PreviousRightColor
Image.RectangleSelectionTool
Image.RectangleTool
Image.Rotate90Degrees
Image.RoundedRectangleTool
Image.SavePalette
Image.ShowColorsWindow
Image.ShowGrid
Image.ShowTileGrid
Image.SmallBrush
Image.SmallerBrush
Image.TextTool
Image.ToolbarEditor
Image.UseSelectionasBrush
Image.ZoomIn
Image.ZoomOut
InstallShield.CheckforUpdates
InstallShield.DemoShieldBrowserWizard
InstallShield.Help
InstallShield.OpenReleaseFolder
InstallShield.Options
InstallShield.PerformDynamicScan
InstallShield.PerformStaticScan
InstallShield.ProjectSettings
InstallShield.Test
InstallShield.VisualBasic6.0Wizard
InstallShield.WebDeploymentWizard
Project.AddClass
Project.AddComponent
Project.AddConnectionPoint
Project.AddEvent
Project.AddFunction
Project.AddHTMLPage
Project.AddIndexer
Project.AddInheritedControl
Project.AddInheritedForm
Project.AddInterface
Project.AddMethod
Project.AddModule
Project.AddNestedClass
Project.AddProjectOutputs
Project.AddProperty
Project.AddQuery
Project.AddReference
Project.AddResource
Project.AddSQLScript
Project.AddUserControl
Project.AddVariable
Project.AddWebForm
Project.AddWebReference
Project.AddWebService
Project.AddWebUserControl
Project.AddWindowsForm
Project.Assembly
Project.ComparetoMasterWeb
Project.CopyProject
Project.CreateCommandFile
Project.Design
Project.DesignOn
Project.ExcludeFromProject
Project.File
Project.ImplementInterface
Project.IncludeInProject
Project.Install
Project.MergeModule
Project.NewDatabaseReference
Project.NewFolder
Project.Override
Project.ProjectBuildOrder
Project.ProjectDependencies
Project.ProjectOutput
Project.Properties
Project.RecalculateLinks
Project.ReloadProject
Project.Run
Project.RunCustomTool
Project.RunOn
Project.RunSelection
Project.SetasProjectDefault
Project.SetAsStartPage
Project.SetasStartUpProject
Project.SetDefaultReference
Project.ShowAllFiles
Project.SynchronizeAllFolders
Project.SynchronizeFolder
Project.Uninstall
Project.UnloadProject
Project.UpdateManagedResources
Project.UpdateWebReference
Project.WebPermissions
Project.WorkOffline
Query.AddTable
Query.AddtoOutput
Query.ClearResults
Query.ColumnNames
Query.Delete
Query.GroupBy
Query.InsertResults
Query.InsertValues
Query.MakeTable
Query.ManageIndexes
Query.NameOnly
Query.RemoveFilter
Query.Run
Query.Select
Query.SelectAllRowsFromTableA
Query.SelectAllRowsFromTableB
Query.SortAscending
Query.SortDescending
Query.Update
Query.VerifySQLSyntax
Schema.10
Schema.100
Schema.150
Schema.200
Schema.25
Schema.50
Schema.75
Schema.AutoArrange
Schema.Collapse
Schema.Deletekey
Schema.Editkey
Schema.EditRelation
Schema.Expand
Schema.GenerateDataset
Schema.MakeTypeGlobal
Schema.Newany
Schema.NewanyAttribute
Schema.Newattribute
Schema.NewattributeGroup
Schema.NewcomplexType
Schema.Newelement
Schema.Newfacet
Schema.Newgroup
Schema.Newkey
Schema.NewRelation
Schema.NewsimpleType
Schema.PreviewDataset
Schema.ShowDefaultTree
Schema.ToFit
Schema.ValidateSchema
Styles.AddStyleRule
Styles.BuildStyle
Styles.DefaultPreviewPage
Styles.SelectPreviewPage
Table.DeleteCells
Table.DeleteColumns
Table.DeleteRows
Table.DeleteTable
Table.InsertCell
Table.InsertColumntotheLeft
Table.InsertColumntotheRight
Table.InsertRowAbove
Table.InsertRowBelow
Table.InsertTable
Table.MergeCells
Table.SelectCell
Table.SelectColumn
Table.SelectRow
Table.SelectTable
Tools.AddinManager
Tools.AddRemoveToolboxItems
Tools.AddTab
Tools.Alias
Tools.BuildCommentWebPages
Tools.CancelRecording
Tools.CommandWindowMarkMode
Tools.ConnecttoDatabase
Tools.ConnecttoServer
Tools.CurrentColumn
Tools.CurrentLine
Tools.CurrentText
Tools.Customize
Tools.CustomizeKeyboard
Tools.CustomizeObjectBrowsingScope
Tools.DebugProcesses
Tools.DeleteTab
Tools.Edit
Tools.ExternalCommand1
Tools.ExternalCommand10
Tools.ExternalCommand11
Tools.ExternalCommand12
Tools.ExternalCommand13
Tools.ExternalCommand14
Tools.ExternalCommand15
Tools.ExternalCommand16
Tools.ExternalCommand17
Tools.ExternalCommand18
Tools.ExternalCommand19
Tools.ExternalCommand2
Tools.ExternalCommand20
Tools.ExternalCommand21
Tools.ExternalCommand22
Tools.ExternalCommand23
Tools.ExternalCommand24
Tools.ExternalCommand3
Tools.ExternalCommand4
Tools.ExternalCommand5
Tools.ExternalCommand6
Tools.ExternalCommand7
Tools.ExternalCommand8
Tools.ExternalCommand9
Tools.ExternalTools
Tools.GoToCommandLine
Tools.ImmediateMode
Tools.ItemDirectory
Tools.ItemExtension
Tools.ItemFileName
Tools.ItemPath
Tools.ListView
Tools.LoadMacroProject
Tools.LogCommandWindowOutput
Tools.MacrosIDE
Tools.MoveDown
Tools.MoveUp
Tools.Newmacro
Tools.NewMacroProject
Tools.Newmodule
Tools.ObjectBrowsingScope
Tools.Open
Tools.OpenWith
Tools.Options
Tools.PauseResumeRecording
Tools.ProjectDirectory
Tools.ProjectFileName
Tools.RecordTemporaryMacro
Tools.RenameItem
Tools.RenameTab
Tools.Run
Tools.RunTemporaryMacro
Tools.SaveTemporaryMacro
Tools.SetasRecordingProject
Tools.Shell
Tools.ShowAllTabs
Tools.SolutionDirectory
Tools.SolutionFileName
Tools.SortItemsAlphabetically
Tools.TargetDirectory
Tools.TargetExtension
Tools.TargetName
Tools.TargetPath
Tools.UnloadMacroProject
Tools.UnloadSourceBrowserFiles
Tools.UpgradeVisualBasic6Code
View.AddtoFavorites
View.All
View.BrokenLinksReport
View.BrowseDefinition
View.BrowseNext
View.BrowsePrevious
View.BuildErrors
View.BuildStartupProjectsOnlyOnRun
View.Category
View.CheckConstraints
View.ClassView
View.ClassViewGroupByType
View.ClassViewShowProjects
View.ClassViewSortAlphabetically
View.ClassViewSortByAccess
View.ClassViewSortByType
View.CollapseAllControls
View.CommandWindow
View.Comment
View.CurrentFile
View.CustomActions
View.DefaultSort
View.Dependencies
View.Description
View.Details
View.Diagram
View.DocumentOutline
View.ExcludeFilter
View.ExpandAll
View.ExpandAllControls
View.Favorites
View.File
View.FileSystem
View.FileTypes
View.FindinEditor
View.FindResults1
View.FindResults2
View.FindSymbolResults
View.FullScreen
View.Grid
View.Home
View.IndexesandKeys
View.LaunchConditions
View.MacroExplorer
View.NavigateBackward
View.NavigateForward
View.NextTask
View.NextView
View.ObjectBrowser
View.ObjectBrowserBack
View.ObjectBrowserForward
View.ObjectBrowserGroupingandSorting
View.ObjectBrowserGroupObjectsByAccess
View.ObjectBrowserGroupObjectsByType
View.ObjectBrowserSetGrouping
View.ObjectBrowserShowBrowseContainers
View.ObjectBrowserShowHiddenMembers
View.ObjectBrowserSortMembersAlphabetically
View.ObjectBrowserSortMembersByAccess
View.ObjectBrowserSortMembersByType
View.ObjectBrowserSortObjectsAlphabetically
View.ObjectBrowserSortObjectsByAccess
View.ObjectBrowserSortObjectsByType
View.OnlineSearch
View.Open
View.OpenWith
View.Output
View.Outputs
View.PendingCheckins
View.PopBrowseContext
View.PreviousTask
View.PreviousView
View.Priority
View.PropertiesWindow
View.PropertyPages
View.RecalculatePageBreaks
View.Refresh
View.RefreshBrowser
View.Registry
View.Relationships
View.ResourceView
View.Results
View.ServerExplorer
View.Shortcut
View.ShowCheckedTasks
View.ShowReferences
View.ShowScriptOnly
View.ShowWebBrowser
View.SolutionExplorer
View.SortTasksByChecked
View.SQL
View.Stop
View.StopBrowser
View.SwitchtoScriptOutline
View.SynchronizeClassView
View.SynchronizeDocumentOutline
View.TabOrder
View.TaskList
View.TextSize
View.Toolbox
View.TrackActivityinSolutionExplorer
View.Unchecked
View.URL
View.User
View.UserInterface
View.ViewCode
View.ViewDesigner
View.ViewPageBreaks
View.VisibleBorders
View.WebNavigateBack
View.WebNavigateForward
View.XMLSchemaOverview
View.Zoom
VisualAssistX.EnableDisable
VisualAssistX.FindNextbyContext
VisualAssistX.FindPreviousbyContext
VisualAssistX.FindSymbolDialog
VisualAssistX.GotoImplementation
VisualAssistX.InsertCodeTemplate
VisualAssistX.ListMethodsinCurrentFile
VisualAssistX.NavigateBack
VisualAssistX.NavigateForward
VisualAssistX.OpenContextMenu
VisualAssistX.OpenCorrespondingHorCPP
VisualAssistX.OpenFileInWorkspaceDialog
VisualAssistX.Options
VisualAssistX.Paste
VisualAssistX.ReparseCurrentFile
VisualAssistX.ScopeNext
VisualAssistX.ScopePrevious
VisualAssistX.SortSelectedLines
VisualAssistX.SpellCheck
VisualAssistX.SurroundSelectionWithBraces
VisualAssistX.SurroundSelectionWithComment
VisualAssistX.SurroundSelectionWithIfdefOrRegion
VisualAssistX.SurroundSelectionWithParentheses
VisualAssistX.ToggleColoring
VisualAssistX.ToggleRepairCase
VisualAssistX.ToggleSuggestions
VisualAssistX.ToggleUnderlining
VisualAssistX.VAView
VisualAssistX.VAViewFIW
VisualAssistX.VAViewSIW
Window.ActivateDocumentWindow
Window.AutoHide
Window.AutoHideAll
Window.Cascade
Window.CloseAllDocuments
Window.CloseDocumentWindow
Window.CloseToolWindow
Window.Dockable
Window.Floating
Window.Hide
Window.MovetoDropdownBar
Window.MovetoNextTabGroup
Window.MovetoPreviousTabGroup
Window.NewWindow
Window.NextDocumentWindow
Window.NextPane
Window.NextSplitPane
Window.NextSubpane
Window.NextTab
Window.PreviousDocumentWindow
Window.PreviousPane
Window.PreviousSplitPane
Window.PreviousSubpane
Window.PreviousTab
Window.Split
Window.TileHorizontally
Window.TileVertically
Window.Windows
XML.CreateSchema
XML.ValidateXMLData
A journey of a thousand miles must begin with a single step © Lau Tsu
 
Подождите ...
Wait...
Пока на собственное сообщение не было ответов, его можно удалить.