Hi,
Friends, i have one doubt , because i am in learning stage .
Multiply two numbers? one from combox and another one is textbox? it is possible in c# or not?
if it is possible please help me?
int i = int.Parse(comboBox2.SelectedValue);//error
int j = int.Parse(textBox1.Text);
int k = i * j;
textBox2.Text = k.ToString();