If i call it from "Main / Sub Activity_Create(FirstTime As Boolean)" the Logfile says:
** Receiver (starter) OnReceive **
The Starter service should never be started from a receiver.
** Service (starter) Start **
-+-+-+- 1 Minute ist vorbei +-+-+-+-+-
Having said that, you should probably not be doing that from the Starter Service. I'd create a new service & put your code in that, then start that service from Activity_Create. The reason being that the Starter Service runs for as long as the app is running, so you shouldn't be calling StartServiceAt on itself. If you really want to run that functionality from Starter Service, then I guess you could use a timer.
(Sorry - another edit): Or if you are just updating a label on a layout (& by the looks of it it's your main layout) every minute, then why not just use a timer. Set it up in Activity_Create, start it in Activity_Resume & stop it in Activity_Pause.
One of the challenges that developers of any non-small Android app need to deal with, is the multiple possible entry points. During development in almost all cases the application will start from the Main activity. Many programs start with code similar to: Sub Activity_Create (FirstTime As...
www.b4x.com
Starting at boot or starting scheduled. Both should not be use in starter service!
The starter service should never be explicitly started. This means that if you want to start a service at boot then add a different service.