Is there a way to make each form, (all controls, all strings, all integers inside) to make accessible from each other form ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Access modifiers make the members of class accessible or non accessible from other classes. All form classes are public and accessible by other forms by default. The data member declared public are accessible through other forms(classes) and protected members are accessible by sub class. Study about access modifier could help you in making the required members accessible, Access Modifiers