Kundan, changing the look of the scrollbars is quite a task if you don't want to use something like WindowBlinds which can, if I remember correctly, change them Windows wide. The System.Windows.Forms.ScrollBar class has a protected event called OnPaint which you may (if the class isn't sealed) be able to override in order to adjust the default drawing method! Because the scrollbar draws itself polymorphaically (e.g. its drawing state is based upon so many different states), expect it to be a big task! I know, I have had to write one from scratch back in the MS-DOS days... Regards, Ray |