home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Basic / Visual Basic.60 / COMMON / TOOLS / VB / OLEMSG / ABOUT.FRM (.txt) next >
Encoding:
Visual Basic Form  |  1996-06-15  |  1.6 KB  |  53 lines

  1. VERSION 5.00
  2. Begin VB.Form formAbout 
  3.    Caption         =   "About"
  4.    ClientHeight    =   2925
  5.    ClientLeft      =   1290
  6.    ClientTop       =   1545
  7.    ClientWidth     =   5790
  8.    Height          =   3330
  9.    Left            =   1230
  10.    LinkTopic       =   "formAbout"
  11.    ScaleHeight     =   2925
  12.    ScaleWidth      =   5790
  13.    Top             =   1200
  14.    Width           =   5910
  15.    Begin VB.CommandButton btnOK 
  16.       Caption         =   "OK"
  17.       Height          =   372
  18.       Left            =   1920
  19.       TabIndex        =   0
  20.       Top             =   2160
  21.       Width           =   1692
  22.    End
  23.    Begin VB.Label Label2 
  24.       Alignment       =   2  'Center
  25.       Caption         =   "Copyright (c) 1995 Microsoft Corporation"
  26.       Height          =   372
  27.       Left            =   960
  28.       TabIndex        =   2
  29.       Top             =   1560
  30.       Width           =   4092
  31.    End
  32.    Begin VB.Label Label1 
  33.       Alignment       =   2  'Center
  34.       Caption         =   "OLE Messaging Sample"
  35.       Height          =   252
  36.       Left            =   1680
  37.       TabIndex        =   1
  38.       Top             =   480
  39.       Width           =   2172
  40.    End
  41. Attribute VB_Name = "formAbout"
  42. Attribute VB_Base = "0{CFF16A23-C697-11CF-A520-00A0D1003923}"
  43. Attribute VB_GlobalNameSpace = False
  44. Attribute VB_Creatable = False
  45. Attribute VB_TemplateDerived = False
  46. Attribute VB_PredeclaredId = True
  47. Attribute VB_Exposed = False
  48. Attribute VB_Customizable = False
  49. Option Explicit
  50. Private Sub btnOK_Click()
  51.     Unload Me
  52. End Sub
  53.