G
Gerald
Hi All,
This is the below I am trying to get selected item to be shown in the
textbox. Works fine in VB6.0.. But not in MS-Access 2002.
Private Sub Command42_Click()
Text1.Text = List1.list(List1.ListIndex)
Select Case List1.ListIndex
Case 0
Text1.Text = "MOO"
Case 1
Text1.Text = "CHO"
Case 2
Text1.Text = "KKK"
End Select
End Sub
Thanks
This is the below I am trying to get selected item to be shown in the
textbox. Works fine in VB6.0.. But not in MS-Access 2002.
Private Sub Command42_Click()
Text1.Text = List1.list(List1.ListIndex)
Select Case List1.ListIndex
Case 0
Text1.Text = "MOO"
Case 1
Text1.Text = "CHO"
Case 2
Text1.Text = "KKK"
End Select
End Sub
Thanks