It’s a really small one this, almost not worth mentioning, and hey, maybe you already know about it.

Say, you have a back-end document called docBackend which contains an intValue, and you want to set a field on a uidocument to that value.

What you can do is:

call uidoc.FieldSetText(”MyField”,Cstr(docBackEnd.GetItemValue(”IntField”)(0))

Sure, works.

What also works is:

call uidoc.FieldSetText(”MyField”,”" & docBackEnd.GetItemValue(”IntField”)(0))

Of course you can use this everywhere you want to convert an integer, double or date variant to a string. Useful? Don’t know, I just thought it was worth sharing.