Hallo!
Ich habe ein Widget mit einem Label. Wenn ich auf das Label klicke soll die Anwendung starten. Das will nicht so richtig funktionieren.
Laut Tutorial soll es so gehen:
As mentioned above all views support the Click event. All that needs to be done in order to handle the click event of a button named Button1 is to add a sub named Button1_Click (the sub name should actually match the EventName property which is by default the same as the name).
For example if you want to show the main Activity when the user presses on Button1 you can use this code:
Sub Button1_Click
StartActivity(Main)
End Sub
In der Kontexhilfe zu StartActivity steht komischerweise, dass man StartActivity nicht in einem Service aufrufen soll. ???
Ich habe das mit dem Label gemacht. Also so:
Sub Label1_Click
StartActivity(Main)
End Sub
Aber es passiert nichts. Im Log sehe ich nur nach jedem Klick "Service (Name) Start **
Warum startet meine App nicht?