i have two text box
project cost 1000
tax 5% from project cost
for that 5% tax i want to use chekbox
when i click the checkbox in tax field 5% from project cost to be calculate.
please help me
send the design and code
help me
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
jit sunPosted Mar 9, 2012, 9:58 AM
just try to solve write the code yourself.
here is the code and do not forget to mark the accepted answer.
if (checkBox1.Checked)
textBox2.Text = Convert.ToString(1.05 * Convert.ToInt16(textBox1.Text));
else
textBox2.Text = textBox1.Text;
sun
VulpesPosted Mar 9, 2012, 9:51 AM