So I have this Login form with username textbox, password textbox, and a button like what typical Login form looks like for my c# Windows Form Application that I'm currently developing.
Once login is successful, the user will be directed to the second form, which is basically like a menu prompting a user to choose which form he/she wants to go to next, for instance, adding, updating, delete product info, and some sorts. And then, there's this Transaction form.
What I'm trying to do is to fill out one of the textbox in Transaction form with the value(username) that was filled in on the Login form.
How can I do that?