Progress bar with more division

Is it possible to create a Progress bar with min value=0 and max value=100 and number of progress divisions=200, so that each division corresponds to 0.5%. As per my understanding, we have create a subclass to achieve this. But how to create a subclass and how to modify the resources as per our requirement?.
To be very specific, I am looking out for a progress bar with each division=0.1.Min val=0 and max value =100. (That is 0.1,0.2 to 99.8,99.9,100). How to do this?

Thanks in advance…

You need set Max Val = 1000 and count next value as uou need by devide to ten

Thanks…