I tried the unbound textbox solution and at first when i did it it worked but when i saved and reopened the DB the promt was back but asking me for the textbox value this time
Well this is doing my head in trying to understand when it happens, i checked the cases suForm onCurrent and it has some VBA code
Code:
Private Sub Form_Current()
Dim ParentDocName As String
On Error Resume Next
ParentDocName = Me.Parent.Name
If Err <> 0 Then
GoTo Form_Current_Exit
Else
On Error GoTo Form_Current_Err
Me.Parent![InmateHearings Subform].Requery
End If
Form_Current_Exit:
Exit Sub
Form_Current_Err:
[B]MsgBox Error$[/B]
Resume Form_Current_Exit
End Sub
I out commented the MsgBox Error$ and saved and reopened the mainform and suddenly the promt was gone....so i removed the comment and reenabled the MsgBox Error$...hoping the promt would come back...but all works again....so, trying to understand this might not be possible haha at least i know as i mentioned before if it happens i can do a quick workaround replacing the 2nd subform object on the mainForm and manually typing in the Link Master and it workes again....strange but it works....