wrote :: 2005.07.17

Private Sub CommandButton1_Click()
With ListView1
''1行目
With .ListItems.Add
.Text = "田中"
.SubItems(1) = 38
.SubItems(2) = "横浜"
End With
''2行目
With .ListItems.Add
.Text = "鈴木"
.SubItems(1) = 28
.SubItems(2) = "東京"
End With
''3行目
With .ListItems.Add
.Text = "山田"
.SubItems(1) = 41
.SubItems(2) = "埼玉"
End With
End With
End Sub
Private Sub CommandButton1_Click()
With ListView1
''1列目
.ListItems.Add Text:="田中"
.ListItems.Add Text:="鈴木"
.ListItems.Add Text:="山田"
''2列目
.ListItems(1).SubItems(1) = 38
.ListItems(2).SubItems(1) = 28
.ListItems(3).SubItems(1) = 41
''3列目
.ListItems(1).SubItems(2) = "横浜"
.ListItems(2).SubItems(2) = "東京"
.ListItems(3).SubItems(2) = "埼玉"
End With
End Sub