learning programing

Discussion in 'Programming General' started by Xeox, Jul 16, 2010.

learning programing
  1. Unread #1 - Jul 16, 2010 at 3:23 PM
  2. Xeox
    Joined:
    Jun 17, 2010
    Posts:
    357
    Referrals:
    0
    Sythe Gold:
    0

    Xeox Forum Addict
    Banned

    learning programing

    I just downloaded visual studio 2010 and was wondering if anyone had any tutorials on some little programs i could start to make for myself to get familiar with the system. also if this thread is in the wrong forum plz redirect it to the right one =)
     
  3. Unread #2 - Jul 22, 2010 at 11:13 PM
  4. syth4
    Joined:
    Jan 28, 2007
    Posts:
    173
    Referrals:
    1
    Sythe Gold:
    1

    syth4 Active Member

    learning programing

    Try a progress bar experiment...
    First make a new windows forms application...
    Then make a button and a progress bar...
    And then double-click on the button you made and insert this code:

    Code:
    ProgressBar1.Increment(10)
    This will increment the progress bar by 10 every time you press the button :)

    This code will do exactly the same only it will tell you when the progress bar is at the max value and reset it after you click OK.

    Code:
    ProgressBar1.Increment(10)
    If ProgressBar1.Value = 100 Then
         MsgBox("Finished!")
         ProgressBar1.Value = 0
    End If
    
     
< Creating a User image? | Help with account creator in java >

Users viewing this thread
1 guest


 
 
Adblock breaks this site