home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Microsoft Plateform / Visual Basic 5.0 / Msvb50.ace / msvb50 / MSVB50 / VB / SETUPKIT / SETUP1 / MESSAGE.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1996-10-07  |  1.6 KB  |  55 lines

  1. VERSION 5.00
  2. Begin VB.Form frmMessage 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    ClientHeight    =   900
  5.    ClientLeft      =   1065
  6.    ClientTop       =   1995
  7.    ClientWidth     =   5340
  8.    ClipControls    =   0   'False
  9.    ControlBox      =   0   'False
  10.    BeginProperty Font 
  11.       Name            =   "MS Sans Serif"
  12.       Size            =   8.25
  13.       Charset         =   0
  14.       Weight          =   700
  15.       Underline       =   0   'False
  16.       Italic          =   0   'False
  17.       Strikethrough   =   0   'False
  18.    EndProperty
  19.    Icon            =   "message.frx":0000
  20.    LinkTopic       =   "Form2"
  21.    LockControls    =   -1  'True
  22.    MaxButton       =   0   'False
  23.    MinButton       =   0   'False
  24.    ScaleHeight     =   900
  25.    ScaleWidth      =   5340
  26.    Begin VB.Image imgMsg 
  27.       Height          =   480
  28.       Left            =   270
  29.       Picture         =   "message.frx":0442
  30.       Top             =   210
  31.       Width           =   480
  32.    End
  33.    Begin VB.Label lblMsg 
  34.       AutoSize        =   -1  'True
  35.       Caption         =   "*"
  36.       Height          =   195
  37.       Left            =   945
  38.       TabIndex        =   0
  39.       Top             =   360
  40.       Width           =   4110
  41.       WordWrap        =   -1  'True
  42.    End
  43. Attribute VB_Name = "frmMessage"
  44. Attribute VB_GlobalNameSpace = False
  45. Attribute VB_Creatable = False
  46. Attribute VB_TemplateDerived = False
  47. Attribute VB_PredeclaredId = True
  48. Attribute VB_Exposed = False
  49. Option Explicit
  50. Option Compare Text
  51. ' frmMessage
  52. Private Sub Form_Load()
  53.     SetFormFont Me
  54. End Sub
  55.