home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 31 / CDASC_31_1996_juillet_aout.iso / vrac / altd201a.zip / VB4016.ARJ / VB40.16 / ABOUT.FRM next >
Text File  |  1996-04-19  |  2KB  |  67 lines

  1. VERSION 4.00
  2. Begin VB.Form frmAbout 
  3.    Caption         =   "About"
  4.    ClientHeight    =   3330
  5.    ClientLeft      =   1935
  6.    ClientTop       =   1950
  7.    ClientWidth     =   5700
  8.    Height          =   3735
  9.    Left            =   1875
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   3330
  12.    ScaleWidth      =   5700
  13.    Top             =   1605
  14.    Width           =   5820
  15.    Begin VB.TextBox Text1 
  16.       Appearance      =   0  'Flat
  17.       BackColor       =   &H00C0C0C0&
  18.       BorderStyle     =   0  'None
  19.       Height          =   1815
  20.       Left            =   480
  21.       MultiLine       =   -1  'True
  22.       TabIndex        =   1
  23.       Top             =   840
  24.       Width           =   4815
  25.    End
  26.    Begin VB.CommandButton OK 
  27.       Cancel          =   -1  'True
  28.       Caption         =   "OK"
  29.       Default         =   -1  'True
  30.       Height          =   495
  31.       Left            =   2400
  32.       TabIndex        =   0
  33.       Top             =   2760
  34.       Width           =   735
  35.    End
  36.    Begin VB.Label Label2 
  37.       Caption         =   "Archive Library 2.0"
  38.       Height          =   255
  39.       Left            =   2040
  40.       TabIndex        =   3
  41.       Top             =   120
  42.       Width           =   1575
  43.    End
  44.    Begin VB.Label Label1 
  45.       Caption         =   "Visual Basic Example"
  46.       Height          =   255
  47.       Left            =   1920
  48.       TabIndex        =   2
  49.       Top             =   360
  50.       Width           =   1575
  51.    End
  52. End
  53. Attribute VB_Name = "frmAbout"
  54. Attribute VB_Creatable = False
  55. Attribute VB_Exposed = False
  56.  
  57. Private Sub OK_Click()
  58. Unload frmAbout
  59. End Sub
  60.  
  61.  
  62. Private Sub Text1_GotFocus()
  63. OK.SetFocus
  64. End Sub
  65.  
  66.  
  67.