|
-
Dec 19th, 2001, 12:50 AM
#1
Winfax & ms access
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|