VBA-Field Pop up

  • Thread starter Thread starter Iram
  • Start date Start date
I

Iram

Hello. I am trying to get the vba in the double click of a field to do two
things.
1. Unlock the field
2. Run a macro called "mcr_ZoomWindow" that creates a pop up window that
allows you to see area of 4"x4" or tryping space.

The below code is what I got so far and it obviously doesn't work.
Can you help?

Thanks.
Iram


Private Sub ECSS_Call_Notes_DblClick(Cancel As Integer)
Me.ECSS_Call_Notes.Locked = False
Me.RunMacro.mcr_ZoomWindow
End Sub
 
Back
Top