It's quite similar to https://communities.bentley.com/products/programming/microstation_programming/f/microstation-programming---forum/201080/mstn-ce-u14-vba-and-com-interop-does-not-release-memory but this time it happens while accessing child elements…
I had written a replacement batch application for Microstation v8i that allowed for external Excel control, logging, and even an undo, but this application was predicated on the ability to clear memory between successive file open operations.
In v8i…
Hi All
I've been using the 'new' operator to allocate vectors as follows:
DPoint3d *pnts = new DPoint3d[_size_];
........
delete [] pnts;
My question is: is it safer to use dlmSystem_mdlMalloc and dlmSystem_mdlFree to allocate and free memory…
Hi All!
I've been using the 'new' operator to allocate vectors as follows:
DPoint3d *pnts = new DPoint3d[_size_];
........
delete [] pnts;
My question is: is it safer to use dlmSystem_mdlMalloc and dlmSystem_mdlFree to allocate and free memory…
Hello,
When writing utilities to process various information, I have often been remiss in considering 'Set object = Nothing', and notice that many others also forget; where object can be something like oLevel or oModel, oElement, etc.
How important…