home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / PVb5.0 / VB / SAMPLES / PGUIDE / LISTCMBO / FRMABOUT.FRM (.txt) next >
Encoding:
Visual Basic Form  |  1997-01-20  |  2.2 KB  |  77 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "
  5.    ClientHeight    =   3675
  6.    ClientLeft      =   1305
  7.    ClientTop       =   1485
  8.    ClientWidth     =   6000
  9.    Icon            =   "frmabout.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   3675
  14.    ScaleWidth      =   6000
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   2  'CenterScreen
  17.    Begin VB.CommandButton cmdOk 
  18.       Cancel          =   -1  'True
  19.       Caption         =   "
  20. (&K)"
  21.       Default         =   -1  'True
  22.       Height          =   375
  23.       Left            =   4800
  24.       TabIndex        =   3
  25.       Top             =   3120
  26.       Width           =   945
  27.    End
  28.    Begin VB.Label Label3 
  29.       Caption         =   $"frmabout.frx":000C
  30.       Height          =   1335
  31.       Left            =   240
  32.       TabIndex        =   2
  33.       Top             =   1620
  34.       Width           =   5475
  35.    End
  36.    Begin VB.Line Line1 
  37.       BorderColor     =   &H00FF0000&
  38.       X1              =   240
  39.       X2              =   5760
  40.       Y1              =   720
  41.       Y2              =   720
  42.    End
  43.    Begin VB.Label Label2 
  44.       Caption         =   "
  45.       Height          =   615
  46.       Left            =   240
  47.       TabIndex        =   1
  48.       Top             =   780
  49.       Width           =   5475
  50.    End
  51.    Begin VB.Label Label1 
  52.       Alignment       =   2  'Center
  53.       Caption         =   "
  54.  ListBox 
  55.  ComboBox 
  56.       Height          =   495
  57.       Left            =   600
  58.       TabIndex        =   0
  59.       Top             =   120
  60.       Width           =   4635
  61.    End
  62. Attribute VB_Name = "frmAbout"
  63. Attribute VB_GlobalNameSpace = False
  64. Attribute VB_Creatable = False
  65. Attribute VB_PredeclaredId = True
  66. Attribute VB_Exposed = False
  67. Option Explicit
  68. Private Sub cmdOk_Click()
  69.     Unload Me
  70. End Sub
  71. Private Sub Form_Load()
  72.     '
  73.     ' 
  74.     '
  75.     Me.Move (Screen.Width - Me.Width) / 2, (Screen.Height - Me.Height) / 2
  76. End Sub
  77.