Hi adpkg,
If you want to continue the sliding of ulrs then instead of writting timer1.Stop() set the counter to zero(0) like below and remove the timer1.Stop().
if (counter >= urls.Count)
{
counter = 0;
//timer1.Stop();
}
I hope this will help you out.