home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / messag / firstmsg.fr_ / firstmsg.fr (.txt)
Encoding:
Visual Basic Form  |  1995-01-14  |  2.8 KB  |  80 lines

  1. VERSION 2.00
  2. Begin Form FirstMsg 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "Welcome to Message.VBX"
  6.    ClientHeight    =   2625
  7.    ClientLeft      =   1095
  8.    ClientTop       =   1485
  9.    ClientWidth     =   5475
  10.    ControlBox      =   0   'False
  11.    Height          =   3030
  12.    Left            =   1035
  13.    LinkTopic       =   "FirstMsg"
  14.    MaxButton       =   0   'False
  15.    MDIChild        =   -1  'True
  16.    ScaleHeight     =   2625
  17.    ScaleWidth      =   5475
  18.    Top             =   1140
  19.    Width           =   5595
  20.    Begin Label Label3 
  21.       Alignment       =   2  'Center
  22.       BackStyle       =   0  'Transparent
  23.       Caption         =   "Copyright (c) 1995 by Digital PowerTOOLS"
  24.       FontBold        =   -1  'True
  25.       FontItalic      =   0   'False
  26.       FontName        =   "Times New Roman"
  27.       FontSize        =   12
  28.       FontStrikethru  =   0   'False
  29.       FontUnderline   =   0   'False
  30.       Height          =   375
  31.       Left            =   480
  32.       TabIndex        =   2
  33.       Top             =   2160
  34.       Width           =   4515
  35.    End
  36.    Begin Label Label2 
  37.       Alignment       =   2  'Center
  38.       BackStyle       =   0  'Transparent
  39.       Caption         =   "Message.VBX is shareware, so register your copy soon."
  40.       FontBold        =   -1  'True
  41.       FontItalic      =   0   'False
  42.       FontName        =   "Times New Roman"
  43.       FontSize        =   9.75
  44.       FontStrikethru  =   0   'False
  45.       FontUnderline   =   0   'False
  46.       ForeColor       =   &H00000080&
  47.       Height          =   255
  48.       Left            =   300
  49.       TabIndex        =   1
  50.       Top             =   1920
  51.       Width           =   4875
  52.    End
  53.    Begin Label Label1 
  54.       Alignment       =   2  'Center
  55.       BackStyle       =   0  'Transparent
  56.       Caption         =   "Label1"
  57.       ForeColor       =   &H00800000&
  58.       Height          =   1635
  59.       Left            =   360
  60.       TabIndex        =   0
  61.       Top             =   180
  62.       Width           =   4695
  63.    End
  64. Sub Form_Load ()
  65.     msg$ = "The MDI window shows you how to create" + nl
  66.     msg$ = msg$ + "an attractive status bar using one" + nl
  67.     msg$ = msg$ + "of Message.VBX's message interception" + nl
  68.     msg$ = msg$ + "possibilities.  And, notice that the" + nl
  69.     msg$ = msg$ + "System Menu is included.  Select the DEMOS" + nl
  70.     msg$ = msg$ + "menu to view just a couple of the other possibilities." + nl
  71.     msg$ = msg$ + "But, first try to resize the MDI window.  We've" + nl
  72.     msg$ = msg$ + "enforced minimum and maximum sizes!"
  73.     Label1.Caption = msg$
  74.     Label3.Caption = "Copyright " + Chr$(169) + " 1995 by Digital PowerTOOLS"
  75. End Sub
  76. Sub Form_Paint ()
  77.     DoForm3D Me, "raised", 2, 0
  78.     DoForm3D Me, "sunken", 2, 2
  79. End Sub
  80.