[quote user="Darin Rodberg"]VBA multiline note text[/quote]
MicroStation isn't a word-processor and doesn't understand multi-line text. What you see when you use the word-processor for text input with carriage-returns is a text node element (VBA TextNodeElement).
Create a TextNodeElement at the location you want, then add text to that text node...
Dim oNode As TextNodeElement Set oNode = CreateTextNodeElement1 (Nothing, origin, Matrix3dIdentity) oNode.AddTextLine "One" oNode.AddTextLine "Two"