Found it.
http://support.microsoft.com/default.aspx?scid=kb;en-us;95931
Hmmm few more questions.
On the article it says create a query form.... but in step 2 it says create the following new form that is not based on any table or query....

I guess they meant create it in form?
Right now for the button on my form I have the following code:
'VIEW REPORT button.
'Opens student's APR table in 'report' format.
Private Sub Label8_Click()
On Error GoTo ErrorHandler
If (IsNull(Me!Box2)) Then
MsgBox ("Please first select a student by clicking on GET STUDENT or browsing through the STUDENT LIST.")
Exit Sub
End If
DoCmd.OpenReport "REPORT 1 (Bob)", acViewPreview *
Exit Sub
ErrorHandler:
MsgBox Error(Err)
Exit Sub
End Sub
do I just add OnClick: QBF_Macro after the * line?
Don't quite understand this following code either...
Query: QBF_Query
---------------------------------------------------------
Field: CustomerID
Sort: Ascending
Criteria: Forms![QBF_Form]![What Customer ID] Or _
Forms![QBF_Form]![What Customer ID] Is Null
Field: EmployeeID
Sort: Ascending
Criteria: Forms![QBF_Form]![What Employee ID] Or _
Forms![QBF_Form]![What Employee ID] Is Null
Field: OrderID
Field: OrderDate
The fields are what's in the query.... but for the criterias I don't understand how you create them. Say I have a table that displays bunch data in record. So I have a field called YEAR. If i want to display only YEAR 1, under criteria, can I just do
Criteria: "1"
Like what you would do normally?
Thanx for the helps.
