Sub Service_Start (StartingIntent As Intent)
SynchIt
End Sub
Sub SynchIt
Try
ExecuteRemoteQuery("SELECT * FROM ..", ABC)
ToastMessageShow("Updating RA",False)
Catch
Msgbox(LastException,"Error update RA")
End Try
Try
ExecuteRemoteQuery("SELECT * FROM ..", DEF)
ToastMessageShow("Updating TF",False)
Catch
Msgbox(LastException,"Error update TF")
End Try
Try
ExecuteRemoteQuery("SELECT * FROM ..", GHI)
ToastMessageShow("Updating F",False)
Catch
Msgbox(LastException,"Error update F")
End Try
Try
ExecuteRemoteQuery("SELECT * FROM ..", JKL)
ToastMessageShow("Updating U",False)
Catch
Msgbox(LastException,"Error update U")
End Try
Try
ExecuteRemoteQuery("SELECT * FROM ..", MNO)
ToastMessageShow("Updating RF",False)
Catch
Msgbox(LastException,"Error update RF")
End Try
Try
ExecuteRemoteQuery("SELECT * FROM ..", PQR)
ToastMessageShow("Updating DF",False)
Catch
Msgbox(LastException,"Error update DF")
End Try
CallSubDelayed(ToolActivity,"TerminateServiceUpdateData")
End Sub