Send Topic Feedback | See Object Hierarchy Chart
PC-DMIS 2023.2 Object Library
PCDLRN ActiveX DLL > ApplicationObjectEvents Object : OnCommentInputDialogOpen Event
An expression that evaluates to a CommentInputDialog object to determine the dialog box for which this event should wait.
OnCommentInputDialogOpen Event
Description

This event gets launched when a Comment Input dialog box opens.

Syntax
Visual Basic
Public Event OnCommentInputDialogOpen( _
   ByVal CommentInputDialog As CommentInputDialog _
)
Parameters
CommentInputDialog
An expression that evaluates to a CommentInputDialog object to determine the dialog box for which this event should wait.
Remarks
Important: When one of these events is launched, you must test for the IsReady property. However, the application event handler cannot wait until IsReady, because the handler blocks PC-DMIS. If PC-DMIS is blocked, IsReady never becomes True. The solution is to start a separate worker thread that checks IsReady. This allows the event handler to immediately return, allowing PC-DMIS to work.
See Also