hai,
i had a code in command button click event given bellow:
private sub command_click event()
For i = 0 To Lst_Itm_Cat.ListCount - 1
If Lst_Itm_Cat.Selected(i) = True Then Lst_Itm_Cat.Selected(i) = False
Next
end sub
as well as i had a code in lst_itm_cat (listbox control) click event. my problem is whenever i call the command click event the lst_itm_cat (listbox control)click event was trigred. i don't know why? plz help me...how to avoid this...


Reply With Quote