Hi,
InputBox cannot remember last posotion, but GetNBox can. Could you try to use GetN to replace InputBox. The following is a sample on how to use GetN:
#include <GetNBox.h>
void sample_GetN()
{
GETN_TREE(testTree)
GETN_STR(InputStr,"Please input string", "OK")
GETN_NUM(InputNum, "Please input numeric", 0.5)
if( GetNBox(testTree,"This is a sample!", "Test(can be empty)") )
{
out_str(testTree.InputStr.strVal);
out_double("", testTree.InputNum.dVal);
}
}
Iris