
Signature
---
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy)
> .Subject = Range("C45").Value
>
[quoted text clipped - 30 lines]
>
> - Vis sitert tekst -
Thanks Bob
I still don't get it
This is my macro:
Private Sub CommandButton1_Click()
Columns("A:K").Select
Selection.Copy
Range("A1").Select
Workbooks.Add
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Selection.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False
ActiveWindow.DisplayGridlines = False
'
Application.Dialogs(xlDialogSendMail).Show
End Sub
What next?
Regards
Snoopy
Bob Phillips - 18 Sep 2007 14:14 GMT
That is why the code helps :-)
Application.Dialogs(xlDialogSendMail).Show , Range("C45").Value
should do it for you

Signature
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy)
>> .Subject = Range("C45").Value
>>
[quoted text clipped - 56 lines]
> Regards
> Snoopy