Hi. I want to use a timer object from system.windows.forms. However, I also use threads, and I use the namespace: using System.Threading; Just that when I declare a timer object as:

Timer updateTimer;

I get an errro saying that it is ambigious. Is thhere some way to cast the Timer object to System.Windows.Form?

Jennifer