If Not IsNull(Me.cboAppr) Then
Appr = Me.cboAppr
Else
Appr = Null
End If
I am basically trying to use this as a backup process that runs on form load to back up the information in the form so that if the user wants to quit without saving the changes that may have been made, he can quit and the information that was there before can be restored. Appr is a Public variable of the string format.
If there is nothing in the txtAppr, then it returns an error saying there is an "Invalid Use of Null"
Duhhh, What am I doin wrong????
Caleb
Appr = Me.cboAppr
Else
Appr = Null
End If
I am basically trying to use this as a backup process that runs on form load to back up the information in the form so that if the user wants to quit without saving the changes that may have been made, he can quit and the information that was there before can be restored. Appr is a Public variable of the string format.
If there is nothing in the txtAppr, then it returns an error saying there is an "Invalid Use of Null"
Duhhh, What am I doin wrong????
Caleb