Hello World! I'm talking about how to read a text file in C#. What this program is going to do is let me select a file, Open that file and load it into a list box. And when I click on an item in the [click] And when I click on an item in the list box it will copy it to the clipboard. I'm going to start by building a menu. I can drag the menu strip anywhere, but it's going to appear at the top. So, my menu item on top is file. and then & new, & open, a separator by typing just a minus sign. and E & exit. And this item, right here, is going to be sort. I like to have a tool strip that matches the menu, I'm going to click on this little arrow here and insert standard items. and then I'm going to use new and file [open] But I'm going to right-click and delete the rest of them. I'm also going to delete one of these separators. And then I'm going to add a new item. And that new item is going to be called toolstrip sort. The text is going to be sort, and the picture... That's fairly standard for sorting. And then let's just make sure that each of my items has been named. So I would like to name this one mnuExit. and this one mnuNew. mnuOpen This is mnuSort. And that's tool strip sort. Those were named automatically. We also need from our toolbox... we need the open file dialog. and we need a list box. I'm going to put that right under the toolbar. And make it the full-size of the form below that. I'm actually going to write some code to resize that whenever the form is resized. And will see that in the next video. That's it for now.