#include <GetNbox.h>
void cue()
{
GETN_TREE(tr)
GETN_STR(user,_L("User Name"), "")
double val = NANUM;
GETN_NUM(test, _L("Enter a number"), val) GETN_CUEBANNER("Empty ok")
if(GetNBox(tr, NULL, NULL, NULL, NULL)) {
if(tr.test.dVal == NANUM)
out_str("no value entered");
else
out_str("you have entered a value");
}
}