AronGahagan / cpt-dev

Code repository for the ClearPlan Toolbar
https://www.ClearPlanConsulting.com
3 stars 1 forks source link

cptIMSCobraExport - remove ReDim Preserve in two places #315

Closed AronGahagan closed 1 year ago

AronGahagan commented 1 year ago

Problem:

Formerly we were getting a blank "last element" of the array of custom fields, so we hacked off the last element with:

ReDim Preserve vArray(UBound(vArray)-1) 'v3.3.9

Solution:

For whatever reason, this isn't working right--and it's actually hacking off the last non-zero-length element. Either:

This was MY FAULT: bug introduced with the new cptQuickSort function.

Todo: