How to make a Vertical ProgressBar

Heres your chance to share your own tutorials with the community. Just post them on here. If your lucky they may even be posted on the main site.
6 posts Page 1 of 1
Contributors
User avatar
XTechVB
VIP - Site Partner
VIP - Site Partner
Posts: 727
Joined: Thu May 20, 2010 10:32 am

How to make a Vertical ProgressBar
XTechVB
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:
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

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;
Last edited by XTechVB on Thu May 27, 2010 8:52 am, edited 2 times in total.
You can find me on Facebook or on Skype mihai_92b
Lewis
Coding God
Coding God
Posts: 1564
Joined: Sun Dec 20, 2009 2:12 pm

Re: How to make a Vertical ProgressBar
Lewis
Lol, this is so good :)
Image
User avatar
zachman61
VIP - Donator
VIP - Donator
Posts: 1892
Joined: Wed Dec 16, 2009 9:56 pm

does it increment?
Nailing my feet to the floor is easier than using my own muscles to balance, but you don't see me doing that :)
User avatar
XTechVB
VIP - Site Partner
VIP - Site Partner
Posts: 727
Joined: Thu May 20, 2010 10:32 am

zachman61 wrote:
does it increment?
yes it does everything that the normal one does
You can find me on Facebook or on Skype mihai_92b
User avatar
WALDY44
Just Registered
Just Registered
Posts: 1
Joined: Sat Dec 25, 2010 6:16 pm

This is very good ! :)
User avatar
MrAksel
C# Coder
C# Coder
Posts: 1758
Joined: Fri Mar 26, 2010 12:27 pm

Nice tut! It wasn't much code either :D
LMAOSHMSFOAIDMT
Laughing my a** of so hard my sombrero fell off and I dropped my taco lmao;


Over 30 projects with source code!
Please give reputation to helpful members!

Image
Image
6 posts Page 1 of 1
Return to “Tutorials”