Click here to Skip to main content
Sign Up to vote bad
good
See more: Silverlight5
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
 
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 23 Nov '12 - 19:14


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)
  Permalink  

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

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Mahesh Bailwal 373
1 Sergey Alexandrovich Kryukov 354
2 Maciej Los 245
3 Rohan Leuva 175
4 CPallini 175
0 Sergey Alexandrovich Kryukov 9,287
1 OriginalGriff 7,204
2 CPallini 3,923
3 Rohan Leuva 3,211
4 Maciej Los 2,713


Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 26 Nov 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid