I modified the code again and as long as the value is not null it will pull the signature out but if it is null it returns a data type mismatch, because the string doesnt recognize the null value. Please help
[ If (AppSign.Value) = Null Then
SigPlus1.SigString = ""
Else
'App sign pull out
SigPlus1.ClearTablet
SigPlus1.EncryptionMode = 0
SigPlus1.JustifyMode = 5
SigPlus1.JustifyX = 10
SigPlus1.JustifyY = 10
SigPlus1.DisplayPenWidth = 12
SigPlus1.SigCompressionMode = 1
SigPlus1.SigString = AppSign.Value
End If][/CODE]