Hi - try something like this in the On Dbl Click event of your subform:
Private Sub Form_DblClick(Cancel As Integer)
Dim StrForm As String, strCriteria As String
If IsNull(Me!YourRecordID) Then
Dim msg, style, title, response
msg = ("No details exist for this record")
style...