yea you should try a 4 function calculator or a " Left, Center, Right" program if you really wanna go easy.
By left center right i mean have a label and 3 cammand buttons. Whe you click the "Left" Button the text in the label should be left justtified and the text should read "left justified". Apply this concept to the center and right keys.
look heres the code for the "left" button. I just did this in about a minute.
Private Sub Command1_Click()
lblText.Caption = "Left Justified"
lblText.Alignment = LeftJustify
End Sub