Hi,

using this code i am able to send the viewed report to any given email id in pdf format but attachement "untitled.txt"

at the end change the extension to .pdf and view the report.

But i want instead of "untitled.txt" attachement should be "report.pdf"

pls guide how can i achive the same.


Code:
  Private Sub cmdEmail_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdEmail.Click
        Dim ExportOptions As New CrystalDecisions.Shared.ExportOptions
        Dim EMailOptions As New CrystalDecisions.Shared.MicrosoftMailDestinationOptions
        Try
            ExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat
            ExportOptions.ExportDestinationType = ExportDestinationType.MicrosoftMail
            EMailOptions.MailToList = txtEmail.Text
            EMailOptions.MailSubject = "Online Report"
            EMailOptions.MailMessage = "Report..."
            ExportOptions.ExportDestinationOptions = EMailOptions
            CrReport.Export(ExportOptions)
        Catch ex As Exception
            MsgBox(ex.Message)
        End Try
    End Sub