H Salmander, just wondering if you can help me again. I have changed my program to use CallSub to Main to pop-up a message box, and it worked. However, it is not showing the message, this is what i have set up in Main:
Sub Process_Globals
Dim NewMsg As String
Sub ShowNewMessage
Msgbox(NewMsg,"New Message arrived")
End Sub
In PushService, I have this in Sub MessageArrived:
ToastMessageShow("New message: " & Data, True)
NewMsg = Data
CallSub(Main,"ShowNewMessage")
Am I doing this wrong? The toast message shows up but not the NewMsg
Thanks.