Hey everyone!
I'm having trouble using the Unserialize function in a TypedValue object in VB Script. I thought it might caused by the way I was moving the data to another function so I did a quick test by using the serialize function from the TypedValue of a property then trying to unserialize it right away into a new TypedValue object.
Dim oTypedValue : Set oTypedValue = CreateObject("MFilesAPI.TypedValue")
Dim aSerialized : aSerialized = oJobNumber.Serialize
oTypedValue.Unserialize aSerialized, False
I'm getting a 'type mismatch' error on the unserialize function. There's absolutely no examples of using these functions so I cannot tell why it's not working. I'd appreciate any help anyone can provide!
Thank you,
Heather