I have a VB class inside which one of the methods takes an array of forms.
For each form inside the array, I need it to go through all the objects, check if they are a specific tyoe (input, label, flag, etc.) and get the properties of each object. Then I want to dump them into a text file in the following format:
Form1 | Label1 | "Enter your name"
"Enter your name", which is the caption or text of the form object.
I want to do this to facilitate the translation of the application. Any ideas or thoughts you may have about this?
source
share