Hi
Its very simple to work on VS2005 follow the steps
1)- open visual studio start new C# windows application
2)- A blank form will be displayed to you add the controls (text boxes, list, button) that you want to include in your project and make a full interface.
3)- then the time comes for the coding.. what you want to do is to double click on the control and VS2005 will automatically generates the handler for that you just have to include the small portion of code in that according to your requirement.
like to get text from the text box do this
string str1 = textbox1.Text;
and to insert text
textbox1.Text = "Any string";
hope you understand and the following line help you out. if you have more problems then reply.