Hey,
I've tried writing some code that will, when you click the add to database button, look for the value in a dropdown box, use that as the recordset, then let you enter the information in using input boxes.
I'm not sure if it will let me do it but i came up with this code, i dont think it likes me trying to make the value of the drop down a recordset, can anyone see whats wrong with this code?
Thanks for looking 
Liam
I've tried writing some code that will, when you click the add to database button, look for the value in a dropdown box, use that as the recordset, then let you enter the information in using input boxes.
I'm not sure if it will let me do it but i came up with this code, i dont think it likes me trying to make the value of the drop down a recordset, can anyone see whats wrong with this code?
Code:
Private Sub cmdAdd_Click()
Dim MYDB As Database
Dim SOURCE As Recordset
Set MYDB = CurrentDb()
Set SOURCE = MYDB.OpenRecordset("Me!cmbModules")
SOURCE.MoveFirst
Do Until SOURCE.EOF
SOURCE.AddNew
SOURCE![First Name] = InputBox("Please enter Students First Name")
SOURCE![Last Name] = InputBox("Please enter Students Last Name")
SOURCE![email] = InputBox("Please enter Students Email")
SOURCE![Grade] = InputBox("Please enter Students Grade")
SOURCE.Update
ONWARD:
SOURCE.MoveNext
Loop
End Sub

Liam