I did a little "googling" and came across this code which does paint the value in the center of the control, however it seems to flicker on/off so fast that it can hardly be seen. Is there a trick to keep this visible?
thanks
Private Sub BarLevel1_ValueChanged(sender As Object, e As EventArgs) Handles BarLevel1.ValueChanged
percent = CInt(Me.BarLevel1.Value)
Using gr
gr = BarLevel1.CreateGraphics
gr.DrawString(percent & "%", Me.Font, Brushes.Black, _
Me.BarLevel1.Width / 2 - (gr.MeasureString(percent & "%", SystemFonts.DefaultFont).Width / 2.0F), _
Me.BarLevel1.Height / 2 - (gr.MeasureString(percent & "%", SystemFonts.DefaultFont).Height / 2.0F))
End Using
End Sub