Assuming a command button named cmdExport() on a form, to give you exactly what you asked for, the code will go something like this. Assuming for fields 2 thru 11 you want each line prefixed with the name of the field:
Private Sub cmdExport()
Dim strOutput as String, db as Database, rs as Recordset, i as Long, j as Integer
i = 1 'record counter
Set db = currentdb
set rs = db.OpenRecordSet("myExportTable", dbOpenForwardOnly)
Open "C:\Data\TxtData\LineDelimited.txt" For Output as 1
Do While Not rs.EOF
Line Output #1, i & ". " & University
For j = 1 to 10 'field counter
Line Output #1, rs(j).Name & ": " & rs(j).Value
Next j
i = i + 1
Loop
Close #1
set rs = nothing
set db = nothing
End Sub