Hi Erel,
I am facing strange issues as reported by others too with procedure SubJobDone.It never fires on first attempt.On second(or third etc) click it calls but I loose global values in other forms.If i put breakpoint inside SubJobDone it sometimes stops but most of the time does not.I am using rapid debugger.I have tried to search forum but could not get sure shot answer.can you pls help.Below is my code.
Job_GetUser.Initialize("Job_GetUser",Me)
Job_GetUser.Download2(ServerURL2,Array As String("Query","Select * from xxx Where UserID='" & txtID.text & "' and pwd='" & txtPassword.text & "'"))
Sub Jobdone (Job As HttpJob)
If Job.Success=True Then
Select Job.JobName
Case "Job_GetUser"
Dim parser As JSONParser
Dim response As String
response=Job_GetUser.GetString
............etc
I am facing strange issues as reported by others too with procedure SubJobDone.It never fires on first attempt.On second(or third etc) click it calls but I loose global values in other forms.If i put breakpoint inside SubJobDone it sometimes stops but most of the time does not.I am using rapid debugger.I have tried to search forum but could not get sure shot answer.can you pls help.Below is my code.
Job_GetUser.Initialize("Job_GetUser",Me)
Job_GetUser.Download2(ServerURL2,Array As String("Query","Select * from xxx Where UserID='" & txtID.text & "' and pwd='" & txtPassword.text & "'"))
Sub Jobdone (Job As HttpJob)
If Job.Success=True Then
Select Job.JobName
Case "Job_GetUser"
Dim parser As JSONParser
Dim response As String
response=Job_GetUser.GetString
............etc