Skip to content

Instantly share code, notes, and snippets.

@facebookegypt
Created March 1, 2013 21:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save facebookegypt/5067957 to your computer and use it in GitHub Desktop.
Save facebookegypt/5067957 to your computer and use it in GitHub Desktop.
Option Explicit
Const vbDarkBlue = &H800000
Private Sub Form_Load()
With Label2
.Caption = "My PhoneBook Application"
.ForeColor = vbDarkBlue
.BackStyle = vbTransparent
.BorderStyle = 0
.FontBold = True
.FontSize = 28
.FontName = "Times New Roman"
.Top = Me.Top
'Center
.Left = (Me.Width - .Width) / 2
End With
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment