I was using a program made in C# and came across these progress bars, one of which is blue.
Here\'s a picture of the progress bars in question:
If its a winform application then do the following step
In Program.cs comment out the line
Program.cs
Application.EnableVisualStyles();
In code behind:
ProgressBar1.ForeColor = Color.Blue; ProgressBar1.Style = ProgressBarStyle.Continuous;