This function creates string list.
object.CreateStrings()
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfile interface |
Display the added strings and the text.
Dim aStrings
Dim aMessage
Set aStrings = Profile.CreateStrings
aStrings.Add("FirstLine")
aStrings.Add("SecondLine")
aStrings.Add("ThirdLine")
Profile.MsgBox("TEXT:" & vbNewLine & aStrings.Text & vbNewLine &_
"LINES COUNT: " & aStrings.Count)