Multiselect
This commit is contained in:
@@ -422,16 +422,22 @@ Public Class frmEntities
|
||||
|
||||
End Sub
|
||||
Private Sub BW_Entity_RunWorkerCompleted(sender As Object, e As System.ComponentModel.RunWorkerCompletedEventArgs) Handles BW_Entity.RunWorkerCompleted
|
||||
ProgressPanel1.Visible = False
|
||||
btncancel.Visible = False
|
||||
If Not IsNothing(DT_RESULT) Then
|
||||
Dim result = DT_RESULT.Rows(0).Item(0)
|
||||
If result <> 0 Then
|
||||
MsgBox("Unexpected Error in Executing Procedure - Check the log!", MsgBoxStyle.Critical)
|
||||
Else
|
||||
MsgBox("Procedure was executed successfully!", MsgBoxStyle.Information)
|
||||
If e.Error IsNot Nothing Then
|
||||
MsgBox("Unexpected Error in Executing Procedure - Check the log!", MsgBoxStyle.Critical, Text)
|
||||
LOGGER.Error(e.Error)
|
||||
Else
|
||||
If Not IsNothing(DT_RESULT) Then
|
||||
Dim result = DT_RESULT.Rows(0).Item(0)
|
||||
If result <> 0 Then
|
||||
MsgBox("Unexpected Error in Executing Procedure - Check the log!", MsgBoxStyle.Critical, Text)
|
||||
Else
|
||||
MsgBox("Procedure was executed successfully!", MsgBoxStyle.Information, Text)
|
||||
End If
|
||||
End If
|
||||
End If
|
||||
|
||||
ProgressPanel1.Visible = False
|
||||
btncancel.Visible = False
|
||||
End Sub
|
||||
|
||||
Private Sub btncancel_Click(sender As Object, e As EventArgs) Handles btncancel.Click
|
||||
|
||||
Reference in New Issue
Block a user