found my problem, it should look like this: OpenReport "RptFull", 2, , "[Student] = '" & Me.Student & "' and [Scenario] = '" & Me.Scenario & "' and [Date1] = '" & Me.Date1 & "' and [Teacher] = '" & Me.Teacher & "'"
However I have another problem yet again. I have 4 modal forms that I turn there visible value to false by doing this:
Form_FrmMain.Visible = False
Form_FrmViewData.Visible = False
Form_FrmSelect.Visible = False
Form_FrmData.Visible = False
this all works fine, but when I go back to make the forms visible like this:
Form_FrmMain.Visible = True
Form_FrmViewData.Visible = True
Form_FrmSelect.Visible = True
Form_FrmData.Visible = True
the third one down (Form_FrmSelect) stays false.
I have tried renaming it thinking it may have been a reserved word or something, but what really troubles me is that it can change the property to false but not to true. Does anyone know what is going on here?