Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub btnFax_Click()
Dim stDocName As String
Dim varWhere As Variant
Dim varFaxNum As Variant
stDocName = "yourreport"
varWhere = me.invoiceNumber
varFaxNumber = Dlookup("FaxNumber", "tblCustomers", "CustomerID = " & me.CustomerID) 'set to where you store the fax number- or use a textbox to enter the fax at runtime.
DoCmd.SendObject acReport, stDocName, acFormatSNP, varFaxNum, , , , , False