Hello,


i have a multiline textbox, when i do SaveSetting, Get Settin gto File, it only saves the first line of textbox, how can you save all lines.
I am using This Save Method

Code:
Public Sub Save MultilineTextbox5(ByVal FileName As String)
  Set strm = fso.CreateTextFile(FileName, True)
    With strm
        .WriteLine frmMail.Text5.Text
       
        .Close
    End With
End Sub