Hi guys I have finished my poker timer project for my poker club and it looks really smart the only problem I am having is.... my scrolling text bar (Label6) across the bottom of my Form.1 displays the text that is in Textbox1 in Form.5! that works well apart from two things!

1: the blinking carat from Form5.Textbox1 is showing up and scrolling along with my text in Form1.Label6 I want to remove the carat as it looks messy! how do I do this?

2: Form1.Label6 starts scrolling across the bottom of the form at the speed I want. But then slows down once the last letter has come into view on the right hand side of the form? I have changed some of the settings and got it to be the same all the way across with the timer set at an interval of 50 and the following code:
scrolling text Code:
  1. Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
  2.         Label6.Left -= 5
  3.         If Label6.Left <= -Label6.Width Then
  4.             Label6.Left = Me.Width
  5.         End If
  6.     End Sub
This is the correct speed right across the screen but it is very jerky/jittery!

If any one can help it would be a great help so i can put this project to rest!