SQL Object
 
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
 
Parameter
Description
ViewOrTableOrQuery
A reference to a View, Table or Select query.
 
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