I have a Temporar solution but I don't like it:
Code:
Function Isnotset(test) As Boolean
    On Error Resume Next
     temp = test
     If Err = 91 Then Isnotset = True
End Function
I don't know if it should work with all classes (what about those that have no default value)