Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device.
Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)
Fixed the issue of When set unsigned integer32 data (Dim dy(iw) As UInteger), the saved opj file shows all Zero.
Sample code is as:
orgWkSt.Columns(iIndex).DataFormat = Origin.COLDATAFORMAT.DF_ULONG 'DF_FLOAT orgWkSt.Columns(iIndex).SetData(dy) When try to set unsigned integer32 data (Dim dy(iw) As UInteger), the saved opj file shows all Zero. For other data type, it works OK.
Have the same issue in Matrix. Sample code is as: Dim s2(0 To iRow - 1, 0 To iCol - 1) As UInteger ... ... ... orgMtObjS2 = orgMtS.MatrixObjects.Add orgMtObjS2.DataFormat = Origin.COLDATAFORMAT.DF_ULONG 'DF_DOUBLE nn = orgMtObjS2.SetData(s2, 0, 0)
Added ability to force Text & Numeric datasets to show numeric values as text elements. When a column is Text & Numeric, numeric strings would show with scientific notation. This behavior can now be turned off per column.
Added new Visual Basic sample to demonstrate new Text & Numeric dataset feature.