John W. Vinson said:
Please rephrase the following. This sentence no verb.
What is the Recordsource of each subform?
*******TopSubForm SELECT * FROM tblRemarks ;
******BottomSubForm SELECT * FROM tblRemarks ORDER BY [SrNo] DESC;
What are the Data Entry, Allow Edits, Allow Additions properties of each
subform?
******TopSubForm Yes,Yes,Yes
*****BottomSubForm No,Yes,No
What record or records are you seeing on each subform when you open the
mainform?
******************************************
Found out whats going on When I go to my form (Filtered) it is incorrect ,
stDocName = "frmHorseInfo"
DoCmd.OpenForm stDocName, , , stLinkCriteria
DoCmd.GoToRecord , , acLast
BUT if I select this way it is not correct its Just showing the same as
the top subform , but bottom subform in different sort
If CurrentProject.AllForms("frmHorseInfo").IsLoaded = True Then
DoCmd.Close acForm, "frmHorseInfo"
End If
If cbActiveHorses = "" Or IsNull(cbActiveHorses) Then Exit Sub
DoCmd.OpenForm "frmHorseInfo", acNormal, , , , , "FromMain"
******************************************