Script
”’#####################################################################################
”’#### Script Name: Add a label to a form ######
”’#### Author : Salah Abu-Ghalyon ######
”’#### Website : www.Hybridsolutions.com ######
”’#### Date : 20/06/2013 3:15:20 ######
”’#### Description:This code shows you how to add a label to a created form ######
”’#####################################################################################
Sample
Public Sub main() Dim frm As new VTLGeneral.VTLForm("frm1")Dim lbl As new VTLGeneral.VTLControls.CChartObjectLabel("lbl")frm.AddVTLControl(lbl)lbl.caption = "My Label" ' Adds text property to the labellbl.Top ="500"lbl.left ="800"frm.show()End Sub
See Also