Hi!
I have this code then its works well. But I need to increment only once. Means that when I click on the button its should "add" or increment ONLY once time. Then when you click again to increment a number. Its can accept. How can I do it please?
decimal d1, d2, total;
decimal.TryParse(lblResFactN.Text, out d1);
decimal.TryParse("1", out d2);
total = d1 + d2;
lblTotal.Text = total.ToString();
Afzaal Ahmad ZeeshanPosted Feb 18, 2016, 5:06 PM
Shubham KumarPosted Feb 18, 2016, 11:00 AM
IsraelPosted Feb 18, 2016, 8:43 AM
Shubham KumarPosted Feb 18, 2016, 7:57 AM
IsraelPosted Feb 18, 2016, 7:40 AM
Shubham KumarPosted Feb 18, 2016, 7:14 AM
IsraelPosted Feb 18, 2016, 7:05 AM
Afzaal Ahmad ZeeshanPosted Feb 17, 2016, 9:55 AM