Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
............Also, i have made a code to generate a Custom button when
the workbook opens (placed it in Workbook_Open() ) _________ Private Sub Workbook_BeforeClose(Cancel As Boolean) Dim i For Each i In Application.CommandBars("Formatting") ..Controls.Delete Next i 'myControl.Delete 'Application.CommandBars("Formatting").Controls(my Control).Delete End Sub Private Sub Workbook_Open() Dim myControl Set myControl = Application.CommandBars("Formatting").Controls _ ..Add(Type:=msoControlButton, ID:=2950, Befo=19) With myControl .DescriptionText = "Pastes the Data from Windows Clipboard" .Caption = "Paste the Clipboard" .OnAction = "PasteTxT" .Style = msoButtonIconAndCaption End With End Sub i want to delete the custom button on Workbook close. i dont know how to do that_ Please help! Rgds, Sifar |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Create HTML code for a hyperlink from cell contents | Excel Worksheet Functions | |||
Copy contents to another page | Excel Worksheet Functions | |||
copy cell contents to different page | Excel Discussion (Misc queries) | |||
how do I keep clipboard contents active in excel? | Excel Discussion (Misc queries) | |||
Copy outside Clipboard contents (html page) to a cell in Excel | Excel Programming |