This is a tutorial on how to make your forms prettier without the use of special UI
Textboxes
Password Textboxes
1. Make a Textbox
2. Goto properties and look for "Passwordchar"
3. Set that to * or ●
Different Text Font/Color Textboxes
1. Make a Textbox
2. Goto properties and look for "Font"
3. Click the "..." and change the font and text size
4. Look right below it and you will see "Forecolor"
5. Change that to the color you wish the text to be
Textboxes that change when you click them
1. Double click on your textbox
2. replace the code it just generated with this one
Code:
Private Sub TextBox1_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles TextBox1.MouseClick 'This was copied and pasted from Treeham
'Insert Code Here
End Sub
3. Note the "TextBox1_MouseClick"
Buttons
Change the button entirely
1. Make a button on your form
2. Delete the text in the button (optional)
3. goto mspaint and make a pretty button
4. goto properties and look for "Flatstyle" and "Image" and "Flatappearance"
5. Change "Flatstyle" to Flat and "Image" to whatever image you just made
6. Open up "Flatappearance" and change "Bordersize" to 0
Forms
Style
1. Click your form
2. Goto properties, and look for "Borderstyle"
3. Now change this to "SizableToolWindow"
Changing Form Text
1. Make a timer
2. Set it to enabled, and the interval to 1000
3. Open up the timer's code and put in:
3.5. Make a global integer "x" and set it to 0
Code:
If x = 0 Then
Me.Text = "Treeham is cool"
x += 1
ElseIf x = 1 Then
Me.Text = "Treeham is the best"
Else if x = 2 Then
Me.Text = "Treeham says you can add more if you want"
x = 0 'Just remember to set it to 0 to have it loop
End If
Backgrounds
1. Click your form
2. Look for "Backgroundimage" or "Backcolor"
3. Change those, not too hard "backgroundimage" changes the background to an image and "Backcolor" changes the background color
End
Here is the final result:
I'm open to suggestions to put on here