View Single Post
Old Oct 24th, 2005, 5:09 PM   #20
D-Ferg27
Programmer
 
D-Ferg27's Avatar
 
Join Date: Oct 2005
Posts: 49
Rep Power: 0 D-Ferg27 is on a distinguished road
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
D-Ferg27 is offline   Reply With Quote