What would be the best way to open an editing form from a split form to the same record as the split form?
I don't want tom use the single record part of the split form, no editng at all on the split form.
Currently I'm displaying the record ID and clicking that using:
	
	
	
		
In the ON Load of the editing form I'm using:
	
	
	
		
 I don't want tom use the single record part of the split form, no editng at all on the split form.
Currently I'm displaying the record ID and clicking that using:
		Code:
	
	
	DoCmd.OpenForm "FormNamet", OpenArgs:=Me.RecordID
	In the ON Load of the editing form I'm using:
		Code:
	
	
	        With Me.RecordsetClone
            .FindFirst "RecordID=" & Me.OpenArgs
            If Not .NoMatch Then
                Me.Bookmark = .Bookmark
            End If
        End With
    
    End If