Syntax
| SQL.RunLabels ViewOrTableOrQuery
| ||||
---|---|---|---|---|---|
Description
| Opens a VIEW, TABLE or a SELECT query, and then launches a Wizard function to process the lines into printable labels.
The output is similar to the output option: "Label wizard" in the SQL Designer
| ||||
See Also
| other SQL.Runxxxxxxxx methodes, Label-wizard.
| ||||
Example
| Sub Main() Dim sQuery As String sQuery = "Select Nummer,Omschrijving From ArtikelStam Order By Nummer" SQL.RunLabels sQuery End Sub | ||||