In My Table there is a Memo Field.
It's representing (on Form) by a MultuLine textBox
I want get the lines of that TextBox into a ListBox (on the same Form).
Like in Excel:
Dim v As Variant
v = Split(Range("A1").Value, vbLf)
ListBox1.List = v
What is the Way?
Thanks in Advance.
It's representing (on Form) by a MultuLine textBox
I want get the lines of that TextBox into a ListBox (on the same Form).
Like in Excel:
Dim v As Variant
v = Split(Range("A1").Value, vbLf)
ListBox1.List = v
What is the Way?
Thanks in Advance.