i want to have a list box with three rows,
i want these rows to be bound to a three fields of one table

i dont think my list is databound at all
what am i missing here
thanks

VB Code:
  1. daincMsg3.SelectCommand = New SqlCommand("SELECT * from tb_comp_detail WHERE (c_companycode = '" & lblUser.Text & "')", oSQLConn)
  2.         daincMsg3.Fill(dsIncMsg3)
  3.      
  4.        
  5.  
  6.         lstMessage.Items.Add(New ListItem("Default", "c_msg_default"))
  7.         lstMessage.Items.Add(New ListItem("Message1", "c_msg_custom1"))
  8.         lstMessage.Items.Add(New ListItem("Message2", "c_msg_custom2"))
  9.         lstMessage.DataBind()
  10.         oSQLConn.Close()