Got an interesting one.
I want to dress-up a textbox in a subform as a command button. The reason is that buttons are not allowed in datasheet view, which is by far the best way to display the data.
I've got the coding down pat:
Private Sub Text13_Click()
DoCmd.OpenForm "Applicants", , , "ClientID = '" & ClientID & "'"
End Sub
Tested and works fine. I even have it as a Hyperlink.
Only problem is that the field returns "#Name?" error. Is there anyway of making the text as "GoTo" for all entries instead? Perhaps some very basic coding?