I'm dynamically creating menu items from a few database columns. I want to format the line of text so it looks clean, so I tried separating with tabs. Problem is, only the first tab gets displayed as a tab, the second and third will get displayed as a square.

Any ideas? Code snippet:

VB Code:
  1. cmd.CommandText = "SELECT Agency, Call, Violation FROM vActiveCalls"
  2.                 dr = cmd.ExecuteReader
  3.                 While dr.Read
  4.                     mi.MenuItems.Add(dr.GetString(0) & Chr(9) & dr.GetString(1) & Chr(9) & dr.GetString(2))
  5.                 End While