G
Greg
I have a main form used for entering a trouble ticket. On the main form there
is a search area with a subform which shows a summary of trouble tickets
that are still open. I'm trying to make it so that when the individual
double clicks on the ticket number of the subform, the main form goes to that
record. Ticket numbers are unique.
Dabased is shared by few users and I noticed that when different user
created a new ticket, after I click on this ticket in a subform it is not
showing on a form. I have to close form and reopen then eveything is ok.
here is the code:
Private Sub Form_DblClick(Cancel As Integer)
Parent.Recordset.FindFirst "[Ticket #]=" & Me.[Ticket #]
Forms![Remedy Tickets]![Status].SetFocus
End Sub
is a search area with a subform which shows a summary of trouble tickets
that are still open. I'm trying to make it so that when the individual
double clicks on the ticket number of the subform, the main form goes to that
record. Ticket numbers are unique.
Dabased is shared by few users and I noticed that when different user
created a new ticket, after I click on this ticket in a subform it is not
showing on a form. I have to close form and reopen then eveything is ok.
here is the code:
Private Sub Form_DblClick(Cancel As Integer)
Parent.Recordset.FindFirst "[Ticket #]=" & Me.[Ticket #]
Forms![Remedy Tickets]![Status].SetFocus
End Sub