Okay, I have this app that has the below code and anything under the Msg column is not returning.. I can get the EmployeeID, timestamp the Msg header and the status but the data from the Msg column does not appear

The query works directly in the sql query screen but not from here.. am I doing something wrong?

The table is called chat and it has columns of: EmpID, TimeStamp, Msg, Status

VB Code:
  1. Private Function GetUnread() As String(,)
  2.         Dim Conn As New DBConnection
  3.         Dim qry As String(,) = Conn.ReturnQuery("SELECT * FROM CHAT WHERE Status='0'")
  4.         Conn.ExecuteQuery("UPDATE Chat Set Status='1' WHERE Status='0'")
  5.         Return qry
  6.     End Function

VB Code:
  1. Private Sub CheckMsg()
  2.         Dim Conn As New DBConnection, EmpName As String(,)
  3.         Dim qry2 As String(,) = Conn.ReturnQuery("SELECT EmployeeID FROM Chat WHERE STATUS='0'")
  4.         Dim qry As String(,) = GetUnread()
  5.         Dim x As Integer, TmpID As String
  6.         Dim txtCurrent As String = txtChat.Text
  7.         Dim AddLine As String
  8.  
  9.         If Not IsNothing(qry2(0, 0)) Then
  10.             Dim y As Integer = ReturnArrayLength(qry2.Length)
  11.             For x = 1 To y
  12.                 TmpID = qry(0, x)
  13.                 EmpName = Conn.ReturnQuery("SELECT EmployeeName FROM Employee WHERE EmployeeID='" & TmpID & "'")
  14.                 AddLine = Trim(EmpName(0, 1)) & " " & Trim(qry(1, x)) & ": " & Trim(qry(2, x))
  15.                 txtChat.Text = txtChat.Text & vbCrLf & AddLine
  16.             Next
  17.         End If
  18.     End Sub