Thread
:
sheet export removes custom toolbars.
View Single Post
#
2
Posted to microsoft.public.excel.programming
Gary L Brown
external usenet poster
Posts: 219
sheet export removes custom toolbars.
Comment out the offending line of code by putting a single quoate in front of
it...ie:
' .Buttons.Delete
HTH,
--
Gary Brown
If this post was helpful, please click the ''Yes'' button next to ''Was this
Post Helpfull to you?''.
"jinx_uk_98" wrote:
Hi Guys,
I have a workbook that, when opened, removes all the defult toolbars
and creates a custom bar on wich I have a button to export the current
select sheet to a location.
the problem is that when this code is run is replaces my custom toolbar
with the defult ones.
any ideas?
thanks
kevin
Sub export()
Application.DisplayAlerts = False
Dim newWks As Worksheet
Dim strdate As String
strdate = Format(Now, "dd-mm-yy")
Sheets("summary").Copy
Set newWks = ActiveSheet
With newWks
.Buttons.Delete
With .UsedRange
.value = .value
End With
.Parent.SaveAs Filename:=ThisWorkbook.Path & "\ " & Range("b2").value &
" " & strdate & ".xls", FileFormat:=xlWorkbookNormal
.Parent.Close savechanges:=False
End With
MsgBox "File successfully exported to " & ThisWorkbook.Path
Application.DisplayAlerts = True
End Sub
--
jinx_uk_98
------------------------------------------------------------------------
jinx_uk_98's Profile:
http://www.excelforum.com/member.php...o&userid=28878
View this thread:
http://www.excelforum.com/showthread...hreadid=509932
Reply With Quote
Gary L Brown
View Public Profile
Find all posts by Gary L Brown