Does anyone know what my progress bar looks different in the Visual Studio designer than it does when i build and run my project?
In the designer i see the newer style. Progress is indicated with a solid green line with smoothed edges.
When I run my project the progress bar looks like the old style one. It has ten separate divisions that are blue rectangles.
Why the difference?
Make sure EnableVisualStyles is called before your form is loaded. This is usually in the program class before Application.Run.