IsPaused Function
Maybe I am not using IsPaused correctly, but it seems that the code below ALWAYS says the TechLoc service is already running -- even after using task killers to insure it is not there. Am I doing something wrong? Thanks.
Sub Activity_Create(FirstTime As Boolean)
If IsPaused(TechLoc) = True Then
ToastMessageShow("Service Already Running",False)
Activity.Finish
Return True
End If
StartService(TechLoc)
Activity.Finish
End Sub