Hi,
I created a program in VS2008 for SL 2011 FP1. Everything in my program seem to work fine except for one thing, I can't get the events from Update1 to work, here is my code:
Private Sub Update1_CancelEvent(ByVal Level As Short, ByRef RetVal As Short) Handles Update1.CancelEvent Debug.Print("Cancel") End Sub Private Sub Update1_UpdateEvent(ByVal Level As Short, ByVal InsertFlg As Short, ByVal LevelsDone As Short, ByVal LevelsLeft As Short, ByRef RetVal As Short) Handles Update1.UpdateEvent Debug.Print("Update") End Sub
From what I can see, when I click on the buttons, the code is triggered. Is there something that I should call before to let SL know that I want to add some code there?
*This post is locked for comments