I have a subform called MacroAttività Sub. It has a worksheet layout. The subform recordsource is a query result. On its side I have a text box naled 'text520' which must show the value of the field 'descrizione' of the subform when the user select the desired record row. In the form property tab there is no OnClick event. See image link please. form with no OnClick event There are only 'Enter' and 'Exit'. Why? I tried unsuccesfully this code behind its main form:
Sub MacroAttività Sub_OnClick()
Text520.Value = Me!MacroAttività Sub.Form!descrizione.Value
End Sub
What am I missing?