Hello friends,

I am new to VB (only started learning few days ago).

I'm trying to add bullet point to a text box input in VB word.

It works for bookmarks that doesn't require user input but when the user input text it does not work.

ActiveDocument.Bookmarks("Request").Range.ListFormat.ApplyBulletDefault

ActiveDocument.Bookmarks("Request2").Range.ListFormat.ApplyBulletDefault (doesn't work)
ActiveDocument.Bookmarks("Request2").Range.Text = txtSomething.Text & vbLf & vbLf

What I would like to happen is when the user enters something in the textbox (txtSomething) it'll also apply a bullet point and align that bullet point with the Request bookmark.