I have the following lines of code in VB6
VB Code:
  1. shWorkSheet.Range("A29") = "Comments"
  2.         shWorkSheet.Columns("A:BZ").AutoFit
  3.         bkWorkBook.Worksheets(1).Columns(30).WrapText = True
  4.         shWorkSheet.Range("A30") = txtComments.Text
  5.         bkWorkBook.Worksheets(1).Columns(30).ColumnWidth = 12
txtComments is a multiline text box and I need to display the contents in an Excel spreadsheet as a block of text.

Right now, the comments are all in row 30 and spreading across in a single line to about column I or J.

What modifications do I need to make?