Hi Dpkas,
you can try threading to run your Process.
or you can put condition in Tick Event like below
if(bRunProcess == true)
{
bRunProcess = false;
/// your Process will be here ;
bRunProcess = true;
}
bRunProcess is Boolean public variable set true in application startup. after that automatic set each tick event.
Regards
Keyur