Zooflow: Restore Doctype changes

This commit is contained in:
Jonathan Jenne
2022-03-04 11:44:22 +01:00
parent 44e06dd2f0
commit da966226c9
6 changed files with 44 additions and 18 deletions

View File

@@ -1266,5 +1266,17 @@ Public Class frmFlowForm
Private Sub BarButtonItem9_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItemGlobixGE.ItemClick
frmGlobixBasicConfig.ShowDialog()
End Sub
Private Sub PictureBoxPM_Click(sender As Object, e As EventArgs) Handles PictureBoxPM.Click
Try
Dim oProcessManagerPath = Modules.GetProductPath(DigitalData.Modules.Base.ECM.Product.ProcessManager)
If oProcessManagerPath IsNot Nothing AndAlso IO.File.Exists(oProcessManagerPath) Then
Process.Start(oProcessManagerPath)
End If
Catch ex As Exception
ShowErrorMessage(ex)
End Try
End Sub
End Class