1. How do i make Line Breaks?
I'm not sure if this is what you are looking for but if you have multiline textbox then use this: VbCrLf or chr(13) I'm not sure about the second one though. Example: Code: Text1.Text = "Line One" & VbCrLf & "Line Two" HTH
Text1.Text = "Line One" & VbCrLf & "Line Two"
Forum Rules