Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 67
Default Mail_ActiveSheet and DeleteAllCodeInModule

Hi al

The combination of Ron De Bruin "Mail_ActiveSheet" and Pearson
"DeleteAllCodeInModule"
is an briliant solution for me. Now I can send only the sheet whitout
code`s behind.

Manny thanks to both of you.

If other need`s the code !!!




Sub Mail_ActiveSheet()
Dim wb As Workbook
Dim strdate As String
strdate = Format(Now, "dd-mm-yy h-mm-ss")
Application.ScreenUpdating = False
ActiveSheet.Copy
Set wb = ActiveWorkbook
DeleteAllCodeInModule
With wb
.SaveAs "Part of " & ThisWorkbook.Name _
& " " & strdate & ".xls"
.SendMail ", _
"This is the Subject line"
.ChangeFileAccess xlReadOnly
Kill .FullName
.Close False
End With
Application.ScreenUpdating = True
End Sub

' referanse = "Microsoft Visual
'Basic For Applications Extensibility 5.3".
Sub DeleteAllCodeInModule()
Dim VBCodeMod As CodeModule
Dim StartLine As Long
Dim HowManyLines As Long

Set VBCodeMod = ActiveWorkbook.VBProject. _
VBComponents("Ark1").CodeModule
With VBCodeMod
StartLine = 1
HowManyLines = .CountOfLines
.DeleteLines StartLine, HowManyLines
End With

End Sub

Regards Yngve

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Mail_ActiveSheet and DeleteAllCodeInModule

Hi Yngve

My add-in have this option also if you not want to use VBA
http://www.rondebruin.nl/mail/add-in.htm

--
Regards Ron de Bruin
http://www.rondebruin.nl


"Yngve" wrote in message oups.com...
Hi al

The combination of Ron De Bruin "Mail_ActiveSheet" and Pearson
"DeleteAllCodeInModule"
is an briliant solution for me. Now I can send only the sheet whitout
code`s behind.

Manny thanks to both of you.

If other need`s the code !!!




Sub Mail_ActiveSheet()
Dim wb As Workbook
Dim strdate As String
strdate = Format(Now, "dd-mm-yy h-mm-ss")
Application.ScreenUpdating = False
ActiveSheet.Copy
Set wb = ActiveWorkbook
DeleteAllCodeInModule
With wb
.SaveAs "Part of " & ThisWorkbook.Name _
& " " & strdate & ".xls"
.SendMail ", _
"This is the Subject line"
.ChangeFileAccess xlReadOnly
Kill .FullName
.Close False
End With
Application.ScreenUpdating = True
End Sub

' referanse = "Microsoft Visual
'Basic For Applications Extensibility 5.3".
Sub DeleteAllCodeInModule()
Dim VBCodeMod As CodeModule
Dim StartLine As Long
Dim HowManyLines As Long

Set VBCodeMod = ActiveWorkbook.VBProject. _
VBComponents("Ark1").CodeModule
With VBCodeMod
StartLine = 1
HowManyLines = .CountOfLines
.DeleteLines StartLine, HowManyLines
End With

End Sub

Regards Yngve



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 67
Default Mail_ActiveSheet and DeleteAllCodeInModule

Hi Ron

Thank`s alot, I have download and will try i out, maybee I should
investegate your page more.

Regards Yngve

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Mail_ActiveSheet() evgny[_2_] Excel Programming 3 January 10th 06 04:15 PM


All times are GMT +1. The time now is 04:31 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"