Fax Software

Community Forums

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2605
    eddy
    Member

    Is this possible via code and if so is there an example anywhere?

    #4414
    eddy
    Member

    Alright, found this but got a question. How can I send 2 different reports to the same fax?


    Private Sub cmdFax_Click()
    Dim objWFXSend As New wfxctl32.CSDKSend

    With objWFXSend
       .SetHold (intHold)
      .SetNumber ("618-541-1234")
      .SetTo ("bob")
      .SetCompany ("The Company")
      .AddRecipient  
      .ShowCallProgess (1)    
      .SetPrintFromApp (1)
      .Send (0)
       DoCmd.OpenReport "myreport", acViewNormal
    >>>***HOW DO I GET A DIFFERENT REPORT TO BE PAGE 2 IN WINFAX??***<<<
      .done
    End With
       
    objWFXSend.LeaveRunning
     
    End Sub

    Thanks for any help.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.