The lines of the specified memo control.
object.Lines
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISMemo interface |
Display some information about the specified memo control, including the number and content of its lines.
Dim aMemo
Dim aMemoLines
Dim aMemoInfo
Set aMemo = Form.Controls_("memComment")
set aMemoLines = aMemo.Lines
aMemoInfo =_
"ShortName: " & aMemo.ShortName & vbNewLine &_
"Memo Lines Count = " & aMemoLines.Count & vbNewLine &_
"Memo Lines Text: " & vbNewLine & aMemoLines.Text
Profile.MsgBox(aMemoInfo)
In Profile Client v8 on User Interface Lines can be found in
.