I am firing an event from within a loop:
I see execution hitting the "RaiseEvent" multiple times, but the code in the form (below) only actually executes once...
In my form:
Why is the event getting fired mulitple times but only getting handled once???
Thanks!
Dot
Code:
Private Sub btnCompleted_impl_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCompleted_impl.Click
btnCompleted_impl.Enabled = False
Cursor = Cursors.WaitCursor
Dim lvi As ListViewItem
For Each lvi In lvwRequests_impl.CheckedItems
Dim oTagObject As SelectAccountRequestTagObject = lvi.Tag
[b]RaiseEvent ImplementationCompleted(oTagObject.ClassID, oTagObject.ClassName, oTagObject.ClassInstanceID, oTagObject.UserClassInstanceID, oTagObject.NewStatusID)[/b]
Next
End Sub
In my form:
Code:
Private Sub HandlesImplementationCompleted(ByVal ClassID As Integer, ByVal ClassName As String, ByVal ClassInstanceID As Integer, ByVal UserClassInstanceID As Integer, ByVal NewStatusID As Integer) [b]Handles oSelectAccountRequestControl.ImplementationCompleted[/b]
Dim AccountThatWasImplemented As New UserAccountManagerDLL.Account(ClassID, ClassName, ClassInstanceID, CallingApplicationID, Username, hstSecurityLevels(ClassID.ToString))
AccountThatWasImplemented.ImplementationCompleted(NewStatusID)
MsgBox("The implementation of the " & ClassName & " account has been marked complete", MsgBoxStyle.OKOnly, "User Account Manager Application")
Cursor = Cursors.WaitCursor
'refresh the ListViews
dsAdministratorPersonalQueue = GetAdministratorPersonalQueue()
DisplaySelectAccountRequestControl()
Cursor = Cursors.Default
End Sub
Why is the event getting fired mulitple times but only getting handled once???
Thanks!
Dot