Inserts a string at a specific location in a list box
[C++]
int InsertString(
int nIndex,
const char* pszItem
);
Specifies the zero-based index of the position to insert the string. If this parameter is 1, the string is added to the end of the list.
Points to the null-terminated string that is to be inserted.
The zero-based index to the string in the list box. The return value is
-1 if an error occurs.
Inserts a string into the list box.
Header: xldialog.h