D
David Teich
I finally upgraded to 2007 from 2003. I have a simple database to track
books, movies, etc.
Each type of media has an overview form listing all the database items.
Within an item, I could click the "detail" button and the info on the active
line would pop up in a new window. Now, with 2007, that code does nothing.
The code reads:
Private Sub Show_Detail_Click()
On Error GoTo Err_Show_Detail_Click
Dim stDocName As String
stDocName = "Book Detail"
stLinkCriteria = "[BookID]=" & Me![BookID]
DoCmd.OpenForm stDocName, , , stLinkCriteria
What changed in 2007 that broke that?
books, movies, etc.
Each type of media has an overview form listing all the database items.
Within an item, I could click the "detail" button and the info on the active
line would pop up in a new window. Now, with 2007, that code does nothing.
The code reads:
Private Sub Show_Detail_Click()
On Error GoTo Err_Show_Detail_Click
Dim stDocName As String
stDocName = "Book Detail"
stLinkCriteria = "[BookID]=" & Me![BookID]
DoCmd.OpenForm stDocName, , , stLinkCriteria
What changed in 2007 that broke that?