I want to define an array ,the size of the array can be changed in the SetParameter dialog box.how can I realize this function. Thank you for your help
Printable View
I want to define an array ,the size of the array can be changed in the SetParameter dialog box.how can I realize this function. Thank you for your help
You can use std::vector.
Alternatively, in MFC application you could use CArray class.
Or you could use new and declare it dynamically.