Click here to Skip to main content
16,017,151 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am using slider, in that i am using if condition and message box ,problem is if i move the slider the multiple message box will displaying how to show the only one message box please help me

C#
private void slider_F1_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
        {

                    p1 = Convert.ToDouble(textBox_F1Yngs.Text);
                    p2 = Convert.ToDouble(textBox_F2Yngs.Text);
                    p3 = Convert.ToDouble(textBox_F3Yngs.Text);
            if(p1 ==0 ||p2 ==0 || p ==0)
            {
                //MessageBox.Show("please select all the values");
                slider_F1.Value = 0;
                slider_F1.Minimum = 0;
            }

            else if(p1>p2 || p2>p3 || p1>p3)
            {



              MessageBox.Show("Check Whether Density of Fluid1 (ρ1) < Density of Fluid2 (ρ2)  <  Density of Fluid3 (ρ3)");
          
  slider_F1.Value = 0;

       
           }
Posted

1 solution

Hello,

I'm not sure, but it sounds like the slider(?) is generating lots of events?
Maybe you could disable the slider as you start the procedure and re-enable it before you exit the procedure?


Also the line above...
if(p1 ==0 ||p2 ==0 || p ==0)



Shouldnt that be?

if(p1 ==0 ||p2 ==0 || p3 ==0)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900