AddInfoNoFocus Method (InputDlg)

Build 1501 on 14/Nov/2017  This topic last edited on: 22/Mar/2016, at 17:09

Description

Add the no selectable info text to the InputDlg form. See also AddInfo

Syntax

dlg.AddInfoNoFocus(label As String, maxlines As Integer) As Integer

dlg

Required. Object name, returned by Dim idlg As InputDlg = New InputDlg.

label

Text to display on the form.

maxlines

Maximum number of lines.

Example

 Dim dlg As New InputDlg

 dlg.Title = Designer.Label

 dlg.SetLabelWidth(128)

 dlg.AddString("Logical group name:", sel) 

 dlg.AddInfoNoFocus("Insert empty value to remove grouping", 1)

 

See also

AddInfo