pasensyoso_manigbas
Well-known member
- Joined
- May 19, 2006
- Messages
- 64
- Programming Experience
- Beginner
dim _open as New OpenFile
Dim op As New OleDbCommand("Select * from LocationHolder", connection)
Dim r As OleDbDataReader
r = op.ExecuteReader
While r.Read
_open.cbolocation.Items.Add(r(0)) --> it will not read this part
_open.cbolocation.Items.Add(r("tool")) --> it will not read this part, it skips..
End While
is there something wrong.. with this or this is just a logical error or something... it confuses my state of mind..
Dim op As New OleDbCommand("Select * from LocationHolder", connection)
Dim r As OleDbDataReader
r = op.ExecuteReader
While r.Read
_open.cbolocation.Items.Add(r(0)) --> it will not read this part
_open.cbolocation.Items.Add(r("tool")) --> it will not read this part, it skips..
End While
is there something wrong.. with this or this is just a logical error or something... it confuses my state of mind..