cheesiepoof05
Board Regular
- Joined
- Dec 30, 2010
- Messages
- 82
We have been using an Access form that you can double click on the results and it opens up another form "FRM_EDIT". I have about 5 computers that use the same thing and haven't had any trouble. Recently we got two more PCs and neither of them do anything when you double click to open the next form. This is the code that I believe is supposed to generate the double click to open "FRM_EDIT".
Private Sub lstViewResults_DblClick()
If IsNull(Me.lstViewResults.SelectedItem) Then Exit Sub
DoCmd.OpenForm "FRM_EDIT", acNormal, ,"[Document Number] = '" & Me.lstViewResults.SelectedItem &"'"
End Sub
Thank you!
Private Sub lstViewResults_DblClick()
If IsNull(Me.lstViewResults.SelectedItem) Then Exit Sub
DoCmd.OpenForm "FRM_EDIT", acNormal, ,"[Document Number] = '" & Me.lstViewResults.SelectedItem &"'"
End Sub
Thank you!