1.6 Hello world! I'm talking about how to create a login form in C#. I have a new program, and I'm going to pick project, add Windows form, Windows form, and I'm going to name this FormLogin. And then say add, for my login form I'm going to need labels for instructions, that one's going to say username. or user ID, and then I need a text box for that, and then I need another label, and another text box, here's what I'm going to do: I'm going to copy these: Ctrl+C, Ctrl+V. Then I put them into position, nd then I'm going to need a button that says OK. And if I want, I can make that form a little more exact. And in my properties, the text is going to say login. And label one, is going to be LBL User. And text, the text is going to be user. And the name is LBL user. and for label2, that's going to say password. and this is going to LBL Pass, text say password. And then this text box is TXT user. and this text box is TXT password. And for this I'm going to put in that the password character Is a star. And that means that as they type, they're not going to see what they're typing, is going to see the star, (*) And then this button is going to say &OK, And it is going to be BTN Ok. I'm going to say this.hide. But maybe I'll make a couple of functions here. And make this public, string user. and just return TXT user dot text. and then another function (copy this) called password. and make that TXT password dot text. And then, back in form one, form load, I need a new instance of that form password? FormLogin. Form login FRM equals new form login. frm dow show as a dialog. and then if frm dot password is not equal to "password" or frm dot user (let's get this out of here) is not equal to "Mario". and of course, we're not going to have password and user is Mario. But we might read from a file and have something much more complicated than that. But that's enough for right now.