From 8239883b4796318716c20e877a276a4e4d277411 Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Thu, 24 Oct 2019 13:30:38 +0200 Subject: [PATCH] open files on double click --- GUIs.Common/DocumentResultList/frmDocumentResultList.vb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/GUIs.Common/DocumentResultList/frmDocumentResultList.vb b/GUIs.Common/DocumentResultList/frmDocumentResultList.vb index 3d91aa76..0612417f 100644 --- a/GUIs.Common/DocumentResultList/frmDocumentResultList.vb +++ b/GUIs.Common/DocumentResultList/frmDocumentResultList.vb @@ -492,4 +492,8 @@ Public Class frmDocumentResultList _Logger.Error(ex) End Try End Sub + + Private Sub GridControl_DoubleClick(sender As Object, e As EventArgs) Handles GridControl1.DoubleClick, GridControl2.DoubleClick, GridControl3.DoubleClick + OpenFile() + End Sub End Class \ No newline at end of file