home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmSizeFont
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "Alter Font & Size"
- ClientHeight = 1560
- ClientLeft = 1095
- ClientTop = 1845
- ClientWidth = 2880
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- LinkTopic = "Form1"
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 1560
- ScaleWidth = 2880
- Begin VB.TextBox txtInfo
- Appearance = 0 'Flat
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 600
- TabIndex = 0
- Text = "Hello"
- Top = 720
- Width = 1695
- End
- Begin VB.Menu mnuFont
- Caption = "&Font "
- Begin VB.Menu mnuCourier
- Caption = "&Courier"
- Shortcut = {F1}
- End
- Begin VB.Menu mnuTimesRm
- Caption = "&TimesRm"
- End
- End
- Begin VB.Menu mnuSize
- Caption = "&Size"
- Begin VB.Menu mnu12
- Caption = "12"
- End
- Begin VB.Menu mnu24
- Caption = "24"
- End
- End
- Attribute VB_Name = "frmSizeFont"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub mnu12_Click()
- txtInfo.Font.Size = 12
- End Sub
- Private Sub mnu24_Click()
- txtInfo.Font.Size = 24
- End Sub
- Private Sub mnuCourier_Click()
- txtInfo.Font.Name = "Courier"
- End Sub
- Private Sub mnuTimesRm_Click()
- txtInfo.Font.Name = "Times New Roman"
- End Sub
-