Hi,
I'm going to have to make a few assumptions here.
Mainly that the bound column of your listbox is the primary key of the table that
is used to populate the box and the listbox IS NOT multi-select
Dim strSql As String
strSql = "Delete From yourTable Where id = " & Me.yourListbox
CurrentDb.Execute strSql