smtazulislam
Member
- Local time
- Today, 05:47
- Joined
- Mar 27, 2020
- Messages
- 808
Hello any help will be appreciate,
I have a Continuous Forms. In this form I would like to display my second form "frmMirrorForm".
for that i used,
Its work.
But I should Click the ROW and move the mouse pointer Then displayed.
Can is it display only the move the mouse pointer ? and How to do that ?
I have a Continuous Forms. In this form I would like to display my second form "frmMirrorForm".
for that i used,
Code:
Private Sub Detail_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
DoCmd.OpenForm "frmMirrorForm", acNormal, "Name= " & Name, "EmployeeID=" & Me.EmployeeID, , acWindowNormal
End Sub
But I should Click the ROW and move the mouse pointer Then displayed.
Can is it display only the move the mouse pointer ? and How to do that ?