Hi Guys,
I have this sub module.
Sub GetAPIResultString(ParamString As String )
Dim j As HttpJob
j.Initialize("", Me,Main.DEFAULTSSHENABLED)
j.PostString(Path,ParamString)
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
return j.GetString
End If
j.Release
End Sub
The question is how could I return the j.GetString after the JobDone has return a value.
Thanks in advance.
I have this sub module.
Sub GetAPIResultString(ParamString As String )
Dim j As HttpJob
j.Initialize("", Me,Main.DEFAULTSSHENABLED)
j.PostString(Path,ParamString)
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
return j.GetString
End If
j.Release
End Sub
The question is how could I return the j.GetString after the JobDone has return a value.
Thanks in advance.