Sub Wsw_SelectPlugin(ByRef $bCancelSelect)


This function is called when a user selects a Plugin. It can verify that all required conditions are met, for example the availability of an external converter, and cancel the selection if necessary.


Parameters


  • $bCancelSelect ... Boolean. The default value is False. Set it to True to cancel the Plugin selection.


Example:

Sub Wsw_SelectPlugin(ByRef $bCancelSelect)

   If Not FileExists("c:\converter\doc2txt.exe") Then
      MsgBox("The file ""doc2txt.exe"" was Not found!")
      $bCancelSelect = True
   End If
End Sub