Hi, i'm coding an rss reader plugin but i've got a little problem.
My plugin's Initialize function launch a new thread that check periodically an url to see if the rss stream had changed. In that case i'd like to display a popup notification. So I wrote in my thread code :
If (form.rss_read() = 1) Then
MsgBox("test")
DisplayToast("news : " + lastrss, "Rss Feeder", urlrss, True)
End If
The message box is shown, but I don't see the popup
And if I try to show a popup in ParseCommand, that works well. Do you know where is the problem ? Is there a way to call this function from a thread ?
edit : I'm creating it in VB.Net, if you didn't recognize