Hi, I'm creating a program that will have multiple forms and classes. The user progresses from one form to another and data needs to be sent between the forms. How can I pass this data between forms without declaring it as a public/global item? Or is there a better way to produce such a program? Slightly confusing myself Thanks
Assuming you are using VB.Net, each form is simply a class. You can pass a value to a form via the form/ class constructor. By making the constructor require an argument, you ensure the form gets the data it needs.