Can anyone help me with winfax SDK kit.
i wrote a code that sends ms access reports via winfax.
I can see that winfax gets the report but it can't see the recipient fields : name, Telephone number, To, Subject!
the code goes like this:

Function fax1()
Dim objWinFax As New wfxctl32.CSDKSend
With objWinFax
.ShowCallProgess (False)
.ShowCallProgress (False)
.ShowSendScreen (False)
.SetCompany ("blabla")
.SetNumber ("blabla")
.SetTo ("blalba")
.SetSubject ("blabla")
.AddRecipient

DoCmd.OpenReport "report_name", acViewNormal
.Send (0)

End With


End Function