[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.2

Windows ProgressBar not working on all XP and none 2000 PCs

Asked by kvnsdr in C# Programming Language, .NET

I simply drag-n-drop a progressbar onto a windows app, however I do start it a bit unusually but it still works fine on the XP Development PC both within VS2005 C# debugging and just as a stand-alone app outside the VS IDE. Here's some code on starting and stopping that makes the progressbar visible then not visible when it's instructed to stop.

Note: A windows 2000 PC will show the progressbar only as a slim white rectrangle without any progress tick, however it does at least make visible then not visible.
Note: A XP Pro PC (other than my XP VS2005 PC) nothing shows at all

I'm puzzled....... :-(


         private void button1_Click(object sender, System.EventArgs e)
        {
            try
            {
                Application.DoEvents();
                ProgressbarStatus(100);
               
                // Do some time consuming work on a seperate Thread like loading a listview from a database

               Application.DoEvents();
               ProgressbarStatus(0);                  
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());            
            }
        }

         private void ProgressbarStatus(int speed)
        {
            if (speed > 0)
            {
                progressBarStatus.Enabled = true;
                progressBarStatus.Visible = true;
                progressBarStatus.BackColor = Color.AliceBlue;
                progressBarStatus.Minimum = 0;
                progressBarStatus.Maximum = 100;
                progressBarStatus.Style = ProgressBarStyle.Marquee;
                progressBarStatus.MarqueeAnimationSpeed = speed;

                Application.DoEvents();
            }
            else
            {                
                progressBarStatus.Style = ProgressBarStyle.Marquee;
                progressBarStatus.MarqueeAnimationSpeed = speed;
                progressBarStatus.Visible = false;

                Application.DoEvents();
            }
        }
[+][-]02/20/08 06:20 PM, ID: 20944395Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: C# Programming Language, .NET
Sign Up Now!
Solution Provided By: kvnsdr
Participating Experts: 1
Solution Grade: A
 
[+][-]02/20/08 06:44 AM, ID: 20938206Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02/20/08 07:24 AM, ID: 20938610Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/20/08 11:12 AM, ID: 20940792Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92 / EE_QW_EXPERT_20070906