I have a Form that has a button that opens another form which displays various promotions and blah blah.. I use this to open the form:
Private Sub Command28_Click()
On Error GoTo Err_Command28_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "ViewJobTitle"
stLinkCriteria = "[EmpID]=" & Me![EmployeeID]
DoCmd.OpenForm stDocName, , , stLinkCriteria
Exit_Command28_Click:
Exit Sub
Err_Command28_Click:
MsgBox Err.Description
Resume Exit_Command28_Click
End Sub
This opens a form and shows me the different job titles a person has held based on their EmpID.. What I want to do is have a MsgBox pop up telli\ng me .."This employee has held (the number of records on form) job positions.)
I have tried using RecordCount however im probably not using it correctly.. Can anyone help me? TIA
Private Sub Command28_Click()
On Error GoTo Err_Command28_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "ViewJobTitle"
stLinkCriteria = "[EmpID]=" & Me![EmployeeID]
DoCmd.OpenForm stDocName, , , stLinkCriteria
Exit_Command28_Click:
Exit Sub
Err_Command28_Click:
MsgBox Err.Description
Resume Exit_Command28_Click
End Sub
This opens a form and shows me the different job titles a person has held based on their EmpID.. What I want to do is have a MsgBox pop up telli\ng me .."This employee has held (the number of records on form) job positions.)
I have tried using RecordCount however im probably not using it correctly.. Can anyone help me? TIA