M
mark kubicki
I have:
- a data entry from (1 record at a time), and on it
- command button opens a pop-up form
- the purpose of the pop-up is to allow the user to view other records in
the table for comparison/edit with the one that is being entered
- on the pop-up is a combo that allow the user to navigate thru the records
- the command that opens the pop-up is: DoCmd.OpenForm stDocName
- the commands that allow navigation thru the combo are:
strSearch = "[Type] = " & Chr$(34) & Me![Type] & Chr$(34)
Me.RecordsetClone.FindFirst strSearch
Me.Bookmark = Me.RecordsetClone.Bookmark
The PROBLEM (it seems) is that scrolling around thru the records on the
pop-up mucks around with some sort of pointer or bookmark. This becomes
evident when returning to the main form where GoTo First/Last, Next/Previous
Record commands will no longer take you to all of the records - The first
one(s) and/or last one(s) are no longer accessible thru this method of
navigation (i.e. GoTo First may only take you to record #2, and/or GoTo Last
may only take you to record #48 or #49 out of (50) -I think the limits may
be determined by how many records were navigated thru in the pop-up.
-so, I suspect, my whole approach may be wrong
thanks in advance,
mark
(the reason for needing to be able to "see" other records while entering
data in one is purely editorial -but clearly a desired tool)
- a data entry from (1 record at a time), and on it
- command button opens a pop-up form
- the purpose of the pop-up is to allow the user to view other records in
the table for comparison/edit with the one that is being entered
- on the pop-up is a combo that allow the user to navigate thru the records
- the command that opens the pop-up is: DoCmd.OpenForm stDocName
- the commands that allow navigation thru the combo are:
strSearch = "[Type] = " & Chr$(34) & Me![Type] & Chr$(34)
Me.RecordsetClone.FindFirst strSearch
Me.Bookmark = Me.RecordsetClone.Bookmark
The PROBLEM (it seems) is that scrolling around thru the records on the
pop-up mucks around with some sort of pointer or bookmark. This becomes
evident when returning to the main form where GoTo First/Last, Next/Previous
Record commands will no longer take you to all of the records - The first
one(s) and/or last one(s) are no longer accessible thru this method of
navigation (i.e. GoTo First may only take you to record #2, and/or GoTo Last
may only take you to record #48 or #49 out of (50) -I think the limits may
be determined by how many records were navigated thru in the pop-up.
-so, I suspect, my whole approach may be wrong
thanks in advance,
mark
(the reason for needing to be able to "see" other records while entering
data in one is purely editorial -but clearly a desired tool)