Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In X-Function Builder, menu Tools: Clear Document is used to remove document related contents after duplicating an existing X-Function.

OC function to find dataset's index for a specified range (ORG-7631)

 

3. Provide command to open X-Function in X-Function Builder (ORG-7786)

Code Block
edit -x integ1;
// Or using this
integ1 -e;

 

4. Support Auto checkbox for Slider control (ORG-7847)

Code Block
#include <GetNBox.h>
void test_GetN()
{
	GETN_TREE(tr)	
	GETN_SLIDER(slider, "test", 0, "1|100|100")
	
	TreeNode trN = tr.slider;
	octree_set_auto_support(&trN, 1);
	
	GetNBox(tr);
}

The result dialog is:

Image Added

 

5. LabTalk callable OC function to force recalculate operation executed (ORG-7877)

Click on the recalculate lock and select Show Info from the context menu to get the "operation_uid", then run execute_operation function.

Image Added

Code Block
execute_operation(operation_uid);

 

6. Change hot key in Code Builder, Ctrl+Shift+F for find in files, and Ctrl+Shift+C for copy full path (ORG-7919)

Add OC function for converting date time period to Julian date (ORG-7930)

 

7. OC vector::SetSubVector supports copy by counting elements (ORG-8024)

...

Support range notation directly in LabTalk expression (ORG-8158)

Fast method to read fixed length text from ASCII file (ORG-8167)

...

Code Block
int vectorbase::SetSubVector(vectorbase& vbSource, int c1 = 0, int nCount = -1);
int vector<string>::SetSubVector(vectorbase& vbSource, int c1 = 0, int nCount = -1);

 

Improve LabTalk "type -gb" command for text file output (ORG-8306)

...