Technical Questions
 Crystal Reports Forum : Crystal Reports 9 through 2022 : Technical Questions
Message Icon Topic: fax reports missing format after vs03 to vs05 conv Post Reply Post New Topic
Author Message
hommer
Newbie
Newbie


Joined: 20 Mar 2007
Online Status: Offline
Posts: 1
Quote hommer Replybullet Topic: fax reports missing format after vs03 to vs05 conv
    Posted: 20 Mar 2007 at 9:31am
Hi, all experts,

I have build this solution to fax CR report from win app. It has been used for more than a month without noticible problem, but now all the reports were faxed out without the correct formating!
 
Later I found out this is due to the converting from vs2003 to vs2005.
I got the idea for the original solution from the KBase article c2016115 from
http://technicalsupport.businessobjects.com.
Here is a piece of example code:

Private Sub btnFax_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnFax.Click
        Dim rtfOpts As New PdfRtfWordFormatOptions
        Dim mailOpts As New MicrosoftMailDestinationOptions
        Dim exportOpts As New ExportOptions

        exportOpts = MyRptDoc.ExportOptions
        With exportOpts
            .ExportDestinationType = ExportDestinationType.MicrosoftMail
            .ExportFormatType = ExportFormatType.WordForWindows
            .DestinationOptions = mailOpts
        End With
        mailOpts.MailMessage = txtDesc.Text
        mailOpts.MailSubject = "Invoice from Company XYZ"
        mailOpts.MailToList = "[Fax:" + Fax + "]"
        With rtfOpts
            .UsePageRange = True
        End With
        MyRptDoc.Export()
        Me.Close()
    End Sub


We use GFI fax drivers. The fax went out with data but no format.
This is quoting from above mentioned KB article, and it is also confirmed from the fax driver vendor:
"The report cannot be sent to the fax driver as a report format, but must be sent in a format that the fax driver recognizes, such as Microsoft Word or RTF".
 
On the other side, all preview, print, email (as attachment in PDF format) are working just fine.

IP IP Logged
Post Reply Post New Topic
Printable version Printable version

Forum Jump
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot delete your posts in this forum
You cannot edit your posts in this forum
You cannot create polls in this forum
You cannot vote in polls in this forum



This page was generated in 0.031 seconds.