| Description:Use this code to fax enable your application. Use this code to fax your access report. It also explains how to use winfax. You will need to have symantec Winfax Pro10.0 installed on your machine before executing this code. ________________________________________________________________ Public Function FaxReport() As Boolean On Error Goto EH Dim lReport As Report Dim lFileName As String Dim lSendObj As Object' winfax send object Dim lRet As Long 'delete any existing fax report file lFileName = CurDir & "\" & "FaxReport.html" If Dir(lFileName) <> vbNullString Then Kill lFileName End If 'save as an html file so that it can be faxed as an attachement DoCmd.OutputTo acOutputReport, _ mReportName, "html", lFileName 'now is the time to fax the html file Set lSendObj = CreateObject("WinFax.SDKSend") lRet = lSendObj.SetAreaCode("801") lRet = lSendObj.SetCountryCode("1") lRet = lSendObj.SetNumber(9816661) lRet = lSendObj.AddRecipient() lRet = lSendObj.AddAttachmentFile(lFileName) lRet = lSendObj.ShowCallProgress(1) lRet = lSendObj.Send(0) lRet = lSendObj.Done() Exit Function EH: Exit Function End Function |
Fax Access Reports |
Express News India | Freelance ecommerce web development India