Getting to the finished product entails adding your files to a visual studio or monodevelop project. I am guessing you're on windows using visual studio, so what you need to do is create a new project, right click on the project name in the solution explorer pane, and click Add files...
There will be a file chooser dialog in which you can select them, and, when you do, copy or move them, don't just leave them linked.
At this point, you will need to add the code to add the controls to a window after the part where you create them (best actually to create the dropdown in designer mode, then use the code to add the items to it, like you did).
Then, hit "Build Solution," this will make an exe for you to run. It will be in the bin\debug\ directory or something like that by default, but, you don't have to navigate to it, you can just click the "Run" button.
That's how you get the finished product out there.
tl;dr:
1) Make a new visual studio project
2) Add your source to it.
3) Hit the "Build Solution" button.
4) ??
5) profit
QUOTE(Sneblot @ 27 May, 2008 - 12:59 PM)

QUOTE(crcapps @ 27 May, 2008 - 08:06 AM)

Right. Those aren't programming languages. One is a markup language, the other is a style definition language.
A program needs to be compiled, or, at least interpreted. (.Net is a little of each, sort of).
Thats all im used to I know its not programming I just really put it in for an exampe

. I'll look at how to convert code to the finished programme as I have coded a few things in the last two days but as of yet dont know how to get to he finished artical will look it up on google when I get home. Cheers for every ones help.