CodeItBetter Programming Another VB Programming Blog

How to Draw 3D text on form

Posted on January 5, 2009
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'Graphics - How to Draw 3D text on form

Option Explicit
 
Private Sub Command1_Click()
    Dim I As Integer, ShadowX, ShadowY
    Me.AutoRedraw = True
    Me.FontSize = 30
    ScaleMode = 3
    ForeColor = "&H808080"
    ShadowY = 5
    ShadowX = 5
    For I = 0 To 5
        CurrentX = ShadowX + I
        CurrentY = ShadowY + I
        If I = 5 Then Form1.ForeColor = vbWhite
        Form1.Print "http://codeitbetter.com/"
    Next I
End Sub

Related posts:

  1. How to Draw 3D Gradient text on form
  2. How to make text on a form scroll upward.
  3. How to Draw Hollow Text
  4. How to draw the Wallpaper on form
  5. How to Draw Arched Text
  6. How to Draw Rainbow Text in Picture Box
  7. How to make 3D Text in Label
  8. How to Print Text in specific position
  9. How to draw pie slices
  10. How to Print Text with specific alignment

Filed under: Graphics Leave a comment
Comments (0) Trackbacks (0)

No comments yet.


Leave a comment


No trackbacks yet.