home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form FirstMsg
- BackColor = &H00C0C0C0&
- BorderStyle = 1 'Fixed Single
- Caption = "Welcome to Message.VBX"
- ClientHeight = 2625
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 5475
- ControlBox = 0 'False
- Height = 3030
- Left = 1035
- LinkTopic = "FirstMsg"
- MaxButton = 0 'False
- MDIChild = -1 'True
- ScaleHeight = 2625
- ScaleWidth = 5475
- Top = 1140
- Width = 5595
- Begin Label Label3
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "Copyright (c) 1995 by Digital PowerTOOLS"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "Times New Roman"
- FontSize = 12
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 375
- Left = 480
- TabIndex = 2
- Top = 2160
- Width = 4515
- End
- Begin Label Label2
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "Message.VBX is shareware, so register your copy soon."
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "Times New Roman"
- FontSize = 9.75
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- ForeColor = &H00000080&
- Height = 255
- Left = 300
- TabIndex = 1
- Top = 1920
- Width = 4875
- End
- Begin Label Label1
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "Label1"
- ForeColor = &H00800000&
- Height = 1635
- Left = 360
- TabIndex = 0
- Top = 180
- Width = 4695
- End
- Sub Form_Load ()
- msg$ = "The MDI window shows you how to create" + nl
- msg$ = msg$ + "an attractive status bar using one" + nl
- msg$ = msg$ + "of Message.VBX's message interception" + nl
- msg$ = msg$ + "possibilities. And, notice that the" + nl
- msg$ = msg$ + "System Menu is included. Select the DEMOS" + nl
- msg$ = msg$ + "menu to view just a couple of the other possibilities." + nl
- msg$ = msg$ + "But, first try to resize the MDI window. We've" + nl
- msg$ = msg$ + "enforced minimum and maximum sizes!"
- Label1.Caption = msg$
- Label3.Caption = "Copyright " + Chr$(169) + " 1995 by Digital PowerTOOLS"
- End Sub
- Sub Form_Paint ()
- DoForm3D Me, "raised", 2, 0
- DoForm3D Me, "sunken", 2, 2
- End Sub
-