Hey all,
I'm working with a spreadsheet that contains to combo boxes, one dependant on the other. Everything works, but when I close the spreadsheet, I get the error "method or data member not found", pointing to the dependant comob box. Now, I made sure the name was correct on the combo box and in the VBA code. I even changed the name to something completly different and replaced it in the VBA as well, but i still get the error. Here is my code, maybe someone can spot the error?
	
	
	
		
 I'm working with a spreadsheet that contains to combo boxes, one dependant on the other. Everything works, but when I close the spreadsheet, I get the error "method or data member not found", pointing to the dependant comob box. Now, I made sure the name was correct on the combo box and in the VBA code. I even changed the name to something completly different and replaced it in the VBA as well, but i still get the error. Here is my code, maybe someone can spot the error?
		Code:
	
	
	Private Sub cmbDept_Change()
On Error GoTo prcdErr
    
    If Me.cmbDept <> "" Then
        Call BuildProcessList(Me.cmbDept)
    Else
        Me.cmbProcess.ListFillRange = ""  [COLOR=Green]' this is highlighted on error[/COLOR]
    End If
prcdExit:
    Exit Sub
prcdErr:
    Call FatalError(Err.Number, Err.Description, Me.Name, "cmbDept_Change", False)
    Resume prcdExit
End Sub