TWO PART GUIDE.
Ever wanted your programs to cool effects like all the "cool" programs? Well, you can now!
In this tutorial I will teach you how to make your program form (GUI) have cool effects.
It will include effects such as:
- Fading in when start of program
- Fading out when start of program
- Width enlargement ( Like at the press of a button Your GUI enlarges in width. )
- Height enlargement ( Basically the same except enlarges in height. )
Sliding Width Trick:
Make a form with two buttons.

Double click the first button, ( In my case it's Slide Width button )
And enter in this code:
Code:
Do Until Me.Width > 200 'Change the 200 to however you want your width to be.
Me.Width = Me.Width + 1
Loop
Do Until = Commands to repeat the sub until ----
Me = The form you are on, ( In my case it would be Form2 )
Me.Width = Your forms width.
> = Is greater then
' = Comment
+ 1 = In this code it would mean my current width plus one more.
Loop = End
In total it would mean " When I press this button the Form will grow in width until it is greater then 200. "
Sliding Height Trick:
Double Click the second button, ( In my case it would be Slide Height. )
Enter in this code:
Code:
Do Until Me.Height > 400 'Change the 400 to however you want your height to be.
Me.Height = Me.Height + 1
Loop
Me.Height = Your forms height.
Me = The form you are on, ( In my case it would be Form2 )
Me.Height= Your forms height.
> = Is greater then
' = Comment
+ 1 = In this code it would mean my current width plus one more.
Loop = End
In total this entire code together ( both ) would mean:
When I click the first button the width enlarges. When I click the second button the height enlarges.
Now your code should look something like this:
Guide made by:
Checkers/Check
If you want to use this guide on any site please do so just include my name.
[VB.NET] Effects to your GUI! Part Two
PART TWO!