Re: Checkbox delete issue
This statement tells it to use the first record.
Code:
lst_name.ListIndex = 0
Just DIM it first:
Code:
Dim LI As Integer
LI= lst_name.ListIndex
and use LI for the right value
Re: Checkbox delete issue
do you mean something like that?
Dim ListIndex As Integer
ListIndex = lst_name.ListIndex
By the way i'm a noob so i'm not too sure on this
Re: Checkbox delete issue
That's a reserved word, so, no you can't. That's why I used LI instead.
Actually ListIndex = 0 should be a hint, but I'll tell you. Always use .ListIndex - 1, and check for -1 instead of 0