I want to define a vector of TextBox (or any compnents) in VC++ project (windows form).
I wrote :
std:vector <TextBox^> txt_box;
//
//then I push the elements back in the vector using
txt_box.push_back (textbox1)
//
//...
// for all the text_boxs in my form
but this code does not work.
if you have any idea plz help and thanks.