Hi,
is there nobody who could give me at least some clue how to solve the
problem?
> Dear all,
> I developed a tool window, which is somthing like a custom graphical
[quoted text clipped - 7 lines]
> Thanks in advance,
> Boni
Fuzzier - 27 Mar 2005 04:09 GMT
Here's some clue -- a simple vs macro:
Sub AddUndo()
Dim cmd As Command, cmdBar As CommandBar
' add a new tool bar named "New Bar"
cmdBar = DTE.CommandBars.Add("New Bar", 1, False)
' get the reference to "Edit.Undo" command
cmd = DTE.Commands.Item("Edit.Undo")
' add "Edit.Undo" to the command bar
cmd.AddControl(cmdBar, 1)
End Sub
"Boni" <oilia@nospam> дÈëÏûÏ¢ÐÂÎÅ:OBgCJrTMFHA.568@TK2MSFTNGP09.phx.gbl...
> Hi,
> is there nobody who could give me at least some clue how to solve the
[quoted text clipped - 12 lines]
>> Thanks in advance,
>> Boni