I dont know VBA...

I tried this one....in VB it works...
I cant find the list property in VBA.... if you knew something like this
pls reply thanks...
btw, this is unbound.....




VB Code:
  1. Dim lnAns As Integer
  2.  
  3.     If Me.List1.ListCount = 0 Then
  4.         MsgBox "No items"
  5.         Exit Sub
  6.     End If
  7.     If Me.List1.ListIndex = -1 Then
  8.         MsgBox "No selected items"
  9.         Exit Sub
  10.     End If
  11.     lnAns = MsgBox("You sure to modify this item?", vbYesNo + vbQuestion)
  12.     If lnAns = 7 Then
  13.         Exit Sub
  14.     End If
  15.     Me.List1.[COLOR=Red]List[/COLOR](Me.List1.ListIndex) = Me.Text1.Text


all i found is ItemData property (readonly?)
value property (readonly?)

help!