DicomObjects Reference
DicomObjects Reference / DicomServer Object / ActionComplete Event
Identifies the connection that has completed its operation
The name of the action which has just completed
The value of the Tag property of the DicomConnection object at the time the action was initiated
Indicates whether the action completed without errors

If Success if false, then this contains the related error message

ActionComplete Event
Description
fired when transmission of requests on a DicomConnection object is complete
Syntax
Visual Basic
Public Event ActionComplete( _
   ByVal Connection As DicomConnection, _
   ByVal Action As String, _
   ByVal Tag As Variant, _
   ByVal Success As Boolean, _
   ByVal ErrorMessage As String _
)
Parameters
Connection
Identifies the connection that has completed its operation
Action
The name of the action which has just completed
Tag
The value of the Tag property of the DicomConnection object at the time the action was initiated
Success
Indicates whether the action completed without errors
ErrorMessage

If Success if false, then this contains the related error message

Remarks

This Event will be generated after any asynchronous operation has either completed successfully or failed.
The possible values for action are:

  • None
  • SetDestination
  • SendImages (includes SendModifiedImages)
  • SendData
  • SendVerify
  • SendStatus
  • Find
  • Get
  • Move
  • NGet
  • NCreate
  • NAction
  • NSet
  • NDelete
  • NEventReport
  • SaveImage
  • Shutdown
  • AutoDisconnect
See Also