I have a service module which will download a newer version of my app from my website and I then want to alert Main that this has happened so that it can then be installed. I know that there are a number of ways of doing this but I thought of using a timer. So the service module would start a timer (declared in Main) that would tick after one sec and call an event sub in Main. I'm not sure this is possible as I haven't been able to declare an eventname that works, it always gives a "Sub eventname_tick was not found".
Is this possible at all or should I try some other method - a simple global boolean and have Main check this within its own timer.
Is this possible at all or should I try some other method - a simple global boolean and have Main check this within its own timer.