You have gotten a lot of info from Paul and Steve. Here is another reference to info re referencing forms and controls.
But you can test some of the info that has been given and "see for yourself".
Also, I saw in your original jpg, a line referring to allModules.
This is how I get a list of module names, but I'm sure there are many others--just as good or better.
Code:
'---------------------------------------------------------------------------------------
' Procedure : modstuff
' Author : mellon
' Date : 5/09/2006
' Purpose : Routine to print all module names
'---------------------------------------------------------------------------------------
'
Sub modstuff()
Dim db As DAO.Database
Dim myObj As Object, obj As Object, iCnt As Integer
Dim iModCnt As Integer
10 On Error GoTo modstuff_Error
20 Set db = CurrentDb
30 Set myObj = Application.CurrentProject
40 iModCnt = myObj.AllModules.Count
50 For Each obj In myObj.AllModules
60 iCnt = iCnt + 1
70 Debug.Print iCnt & " " & obj.name
80 Next obj
90 On Error GoTo 0
100 Exit Sub
modstuff_Error:
110 MsgBox "Error " & Err.Number & " in line " & Erl & " (" & Err.Description & ") in procedure modstuff of Module AWF_Related"
End Sub
Good luck.