Is the there a way to see all the variables of one form (TextBox-es, RadioButton-s etc.) in System::Windows::Forms::Form?
If it was in web I could just iterate the content of POST data. But is it possible with System::Windows::Forms::Form?
My problem is that I have lots of inputs generated dynamicly, so they don't have class properties for them. And I don't know how to control their content. If it was web I would have no problems, cause I could just named each element
name="element_1"
name="element_2"
etc.
And then I will iterate POST, but how to do the same in Windows.Forms.
Thank you in advance
If it was in web I could just iterate the content of POST data. But is it possible with System::Windows::Forms::Form?
My problem is that I have lots of inputs generated dynamicly, so they don't have class properties for them. And I don't know how to control their content. If it was web I would have no problems, cause I could just named each element
name="element_1"
name="element_2"
etc.
And then I will iterate POST, but how to do the same in Windows.Forms.
Thank you in advance