Hi Erel,
Again facing a weird situation. I have two activities. Main and Replypost.
In the main activity a Button click takes me to Replypost. The code is very simple
Sub Button1_Click
If musername <> " " Then
mthread = mthread1
StartActivity("replypost")
Else
StartActivity("noposts")
End If
End Sub
This works fine and takes me to "Replypost". In this activity I get some input and the user hits a button to confirm and I am sending control back to the "Main" activity with startactivity("main")
In main I have the following code in the activity resume sub. The code is as follows
Sub Activity_Resume
Ifreplypost.mlastpostdata.Length > 0Then
Label11.Text = replypost.mlastpostdata
replypost.mlastpostdata = ""
EndIf
End Sub
Sub Activity_Resume
Ifreplypost.mlastpostdata.Length > 0Then
Label11.Text = replypost.mlastpostdata
replypost.mlastpostdata = ""
EndIf
End Sub
Again facing a weird situation. I have two activities. Main and Replypost.
In the main activity a Button click takes me to Replypost. The code is very simple
Sub Button1_Click
If musername <> " " Then
mthread = mthread1
StartActivity("replypost")
Else
StartActivity("noposts")
End If
End Sub
This works fine and takes me to "Replypost". In this activity I get some input and the user hits a button to confirm and I am sending control back to the "Main" activity with startactivity("main")
In main I have the following code in the activity resume sub. The code is as follows
Sub Activity_Resume
Ifreplypost.mlastpostdata.Length > 0Then
Label11.Text = replypost.mlastpostdata
replypost.mlastpostdata = ""
EndIf
End Sub
Sub Activity_Resume
Ifreplypost.mlastpostdata.Length > 0Then
Label11.Text = replypost.mlastpostdata
replypost.mlastpostdata = ""
EndIf
End Sub