PrintLabelRS:

object.PrintLabelRS (rs As DAO.Recordset)

This method will print the contents of a DAO recordset.

 

example:

object.LabelFont = "arial"
object.FontStyle = fITALIC
object.FontSize = 11
object.LabelCode = code5162_Address
object.Grid = True

object.PrintLabelRS rsLBL
or
object.PrintLabelRS Data1.Recordset

BACK