hello

can anyone help me how to loop? this is the code
dim itemcode as char

Dim conbackview As New OdbcCommand("select item_code from warehouse_mst where jpn =' " & qjpn2 & " ' ", connbackview)
Dim drbackview As OdbcDataReader = conbackview.ExecuteReader(CommandBehavior.Default)

Do While drbackview.Read

itemcode = drbackview.Item("item_code")
MsgBox(itemcode)

Loop

'the connbackview is my connection with my database but it will not disply the itemcode..
hope u can help me