I will first start by saying I hate the Standard slider control, but it's all I can use since I have VB LE. My problem is this:

I'm making a slider to control the song progress slider in winamp. So before I play the file I set the slider1.max = GetSongLength.

The problem with this is, the song length is like 202.345 seconds, and the slider won't accept decimals. So I need to round off to like 202 seconds. I tried:

slider1.max = format(GetSongLength, "###")

but that doesn' t seem to work. How can I round this off? Thanks