Create page window or Note window in active folder or special folder..
string add_new_window( Folder & fld = NULL, int nWinType = EXIST_WKS )
return the window name if success else return empty.
EX1
//create new workbook in active folder void add_new_window_ex1() { string strNewWindow = add_new_window(); }
EX2
//create new matrixbook in active folder void add_new_window_ex2() { string strNewWindow = add_new_window(NULL, EXIST_MATRIX); out_str(strNewWindow); }
origin.h