Under windows, when Evernote is installed, an api is also installed, which can be accessed through vba (for example).
Each notes can show its \"Resources\" (attached
In VB6, there’s a mysterious extra 12 bytes prepended to the content that is saved. Why? Because you saved the Variant structure as well as the contents of the Variant.
You need to "copy" the Variant content to Byte array, for example:
ReDim arrByte(0 To UBound(varBuffer) - LBound(varBuffer))
For i = 0 To UBound(varBuffer) - LBound(varBuffer)
arrByte = varBuffer(i + LBound(varBuffer))
Next i