Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Option Explicit
Private Sub Form_Load()
Dim li As ListItem
With ListView1
.View = lvwReport
.ColumnHeaders.Add , , "One"
.ColumnHeaders.Add , , "Two"
Set li = .ListItems.Add(, , Date)
li.SubItems(1) = Format(Date, "MMMM")
Set li = .ListItems.Add(, , Date + 1)
li.SubItems(1) = Format(Date + 1, "MMMM")
End With
End Sub