ok, to give you a little background on what I'm doing.... I decided that I wanted to learn how to program in C# (in my free time) and I've learned a few things here and there. (currently reading C# for dummies) now I wanted to try to make a app of my own. when I try to run it I get a error. but with me being new, I really dont know how to fix it. I was wondering if some one here would be able to help me.


Here is the code I'm working on:

namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void exitToolStripMenuItem_Click(object sender, EventArgs e)
{

}

private void label6_Click(object sender, EventArgs e)
{

}

private void find_Click(object sender, EventArgs e)
{

}

private void find2_Click(object sender, EventArgs e)
{
int soulution2;
int numerator;
int denominator;
int result = numerator / denominator;
return solution2=result;
}
}
}