Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would like to open a seperate workbook with a macro and add a
button. I would also like to assign the button a macro from the original workbook. Then I will need to know how to delete all buttons on a Sheet. Thanks in advance for any and all help. thanks, Jay |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Dec 9, 10:11*am, jlclyde wrote:
I would like to open a seperate workbook with a macro and add a button. *I would also like to assign the button a macro from the original workbook. Then I will need to know how to delete all buttons on a Sheet. *Thanks in advance for any and all help. thanks, Jay I have found how to add a button and add code to it. With this. Sub AddFormsRunButton() Dim cel As Range, newCB As Object Set cel = ActiveSheet.Range("L15") Set newCB = ActiveSheet.Buttons.Add(25, 25, 25, 25) With newCB .OnAction = "'Price Quotation Sheet.xls'!Mail" .Characters.Text = "Send Proposal To Customer" With .ShapeRange .Left = cel.Left + 3 .Top = cel.Top + cel.Height - 30 .Width = 90 .Height = 40 End With With .Font .Name = "Arial" .FontStyle = "Bold" .Size = 12 .ColorIndex = xlAutomatic End With End With End Sub I have also found out how to add the code of Mail. But in mail I would liek to Delete the button that was created and send via email to another party. Any help? Thanks, Jay |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VBA code for search button | Excel Worksheet Functions | |||
configure add button & code | Excel Discussion (Misc queries) | |||
VBA code behind command button | Excel Worksheet Functions | |||
Delete Code Modules Programatically | Excel Discussion (Misc queries) | |||
Command Button VBA code | Excel Discussion (Misc queries) |