home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form TextOut
- BorderStyle = 3 'Fixed Double
- Caption = "SuperTextOut Demo"
- ClientHeight = 4740
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 7365
- Height = 5145
- Left = 1035
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 4740
- ScaleWidth = 7365
- Top = 1140
- Width = 7485
- Sub Form_Load ()
- ScreenCenterWindow (Me.hWnd)
- Window3Dfx Me.hWnd
- Screen.MousePointer = 0
- 'TextOut3Drotate samples are in Paint event
- End Sub
- Sub Form_Paint ()
- Draw3DWindowBox Me.hWnd, 3, "SunkenDouble"
- SuperTextOut Me.hDC, 20, 100, "A sample string!", "Arial", "bold", "raised", "left", 12, QBColor(4), 45
- SuperTextOut Me.hDC, 140, 240, "Another sample string!", "Times New Roman", "bolditalic", "sunken", "left", 16, QBColor(1), 90
- SuperTextOut Me.hDC, 250, 40, "Displays normal text too!", "Times New Roman", "bold", "plain", "left", 16, QBColor(0), 0
- SuperTextOut Me.hDC, 250, 70, "Raised Letter Effect!", "Times New Roman", "bold", "raised", "left", 16, QBColor(0), 0
- SuperTextOut Me.hDC, 250, 100, "Sunken Letter Effect!", "Times New Roman", "bold", "sunken", "left", 16, QBColor(0), 0
- SuperTextOut Me.hDC, 200, 20, "Horizontal Effects are EASY!", "Times New Roman", "bold", "raised", "left", 14, QBColor(1), 270
- SuperTextOut Me.hDC, 480, 180, "And UpsideDown Text Too!", "Arial", "bold", "plain", "left", 14, QBColor(1), 180
- HorzCenter% = (Me.Width / 2) / Screen.TwipsPerPixelX
- 'VertCenter% = (Me.Height / 2) / Screen.TwipsPerPixelY
- SuperTextOut Me.hDC, HorzCenter%, 270, "All done with SuperTextOut!", "Arial", "bold", "raised", "center", 18, QBColor(2), 0
- OldScale% = Me.ScaleMode
- OldForeColor& = Me.ForeColor
- Me.ScaleMode = 3
- Me.ForeColor = QBColor(15)
- Me.Line (340, 180)-(340, 260)
- Me.ForeColor = OldForeColor&
- Me.ScaleMode = OldScale%
- SuperTextOut Me.hDC, 340, 190, "Left Aligned", "Arial", "bold", "plain", "left", 12, QBColor(4), 0
- SuperTextOut Me.hDC, 340, 210, "Center Aligned", "Arial", "bold", "plain", "center", 12, QBColor(4), 0
- SuperTextOut Me.hDC, 340, 230, "Right Aligned", "Arial", "bold", "plain", "right", 12, QBColor(4), 0
- End Sub
-