How to make a Vertical ProgressBar
Posted: Mon May 24, 2010 11:01 am
First create a new project
![Image]()
* Now go to Project ---> Add Class (name it what ever you want)
* Delete all the code found there and write this one:
* Now build your application (or debug it)
* now when you close it you should have the vertical progress bar in your toolbox and you can drag it to your application
![Image]()
![Image]()
go to youtube to see it fullscreen HD that's it if you like it visit my website for more cool tutorials
Visit my website
wahooo; wahooo; wahooo; wahooo;

* Now go to Project ---> Add Class (name it what ever you want)
* Delete all the code found there and write this one:
Code: Select all
Imports System
Imports System.Windows.Forms
Public Class MTech010VerticalProgessBar
Inherits ProgressBar
Protected Overloads Overrides ReadOnly Property CreateParams() As CreateParams
Get
Dim cp As CreateParams = MyBase.CreateParams
cp.Style = cp.Style Or &H4
Return cp
End Get
End Property
End Class
* Now build your application (or debug it)
* now when you close it you should have the vertical progress bar in your toolbox and you can drag it to your application


go to youtube to see it fullscreen HD that's it if you like it visit my website for more cool tutorials
Visit my website
wahooo; wahooo; wahooo; wahooo;