Agregar titulo a un ListBox
Tengo el siguiente código me carga todo bien, pero lo que quiero es agregarle Titulo al ListBox.
Private Sub UserForm_Initialize()
Dim i As Integer, Contá As Integer
Contá = WorksheetFunction.CountA(Sheets("Pendientes").Range("A1:A101"))
ListBox1.ColumnCount = 7
ListBox1.ColumnWidths = "180;50;140;50;50;50;50"
Sheets("Prestamos").Select
i = 0
Do While i < Contá - 1
ListBox1.AddItem
ListBox1.List(i, 0) = Worksheets("Pendientes").Range("A" & (i + 2))
ListBox1.List(i, 1) = Worksheets("Pendientes").Range("B" & (i + 2))
ListBox1.List(i, 2) = Worksheets("Pendientes").Range("C" & (i + 2))
ListBox1.List(i, 3) = Worksheets("Pendientes").Range("D" & (i + 2))
ListBox1.List(i, 4) = Worksheets("Pendientes").Range("E" & (i + 2))
ListBox1.List(i, 5) = Worksheets("Pendientes").Range("F" & (i + 2))
ListBox1.List(i, 6) = Worksheets("Pendientes").Range("G" & (i + 2))
i = i + 1
Loop
ListBox1.TextColumn = 3
End Sub