Skip to content

Instantly share code, notes, and snippets.

@ndthanh
Last active January 20, 2017 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ndthanh/e5e32ff317b79206d09c313a07a91f7d to your computer and use it in GitHub Desktop.
Save ndthanh/e5e32ff317b79206d09c313a07a91f7d to your computer and use it in GitHub Desktop.
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Cancel = True
With Target
If .Row > 1 And .Count = 1 And .Column = 1 And .Value = "" Then
FrmDMHH.Show
End If
End With
Cancel = False
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment