//bigtxt = Program.Run("SELECT * from msg where id=1", 1);
private int X = 0; private string bigtxt = "";
private void timer1_Tick(object sender, EventArgs e)
{
try
{
toolStripStatusLabel4.Text = bigtxt.Substring(X, 45);
}catch
{
X = 0;
}
X += 1;
}