So I have a very basic app that has a Widget service called 'Gate1' that launches the 'Doorgate1' RemoteView.
In that widget if a user touches a button, it opens the main routine.
This all works fine.
Within the main routine I have a button that should update an image on the widget but it causes an exception error.
Here is the command from my main routine:
Sub UnlockButton_Click
Gate1.Doorgate1.SetVisible("Locked",False)
Gate1.Doorgate1.SetVisible("Unlocked",True)
Gate1.Doorgate1.UpdateWidget
why cant I update the widget images from another module?
In that widget if a user touches a button, it opens the main routine.
This all works fine.
Within the main routine I have a button that should update an image on the widget but it causes an exception error.
Here is the command from my main routine:
Sub UnlockButton_Click
Gate1.Doorgate1.SetVisible("Locked",False)
Gate1.Doorgate1.SetVisible("Unlocked",True)
Gate1.Doorgate1.UpdateWidget
why cant I update the widget images from another module?