about.frm

来自「vb精彩编程希望大家有用」· FRM 代码 · 共 57 行

FRM
57
字号
VERSION 5.00
Begin VB.Form Form2 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "About ListView Sample"
   ClientHeight    =   1410
   ClientLeft      =   4470
   ClientTop       =   7125
   ClientWidth     =   3390
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   PaletteMode     =   1  'UseZOrder
   ScaleHeight     =   1410
   ScaleWidth      =   3390
   ShowInTaskbar   =   0   'False
   Begin VB.CommandButton Command1 
      Caption         =   "O&K"
      Height          =   315
      Left            =   2280
      TabIndex        =   0
      Top             =   960
      Width           =   975
   End
   Begin VB.Label Label1 
      Height          =   675
      Left            =   180
      TabIndex        =   1
      Top             =   240
      Width           =   3195
   End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Command1_Click()
Unload Me
End Sub

Private Sub Form_Load()
Dim txt As String
'Me.Left = (Screen.Width - Me.Width) / 2
'Me.TOP = (Screen.Height - Me.Height) / 2
Left = (Screen.Width - Width) / 2
Top = (Screen.Height - Height) / 2
txt = "Written by Mike Maddox"
txt = txt & vbCrLf & "Microsoft Corporation 1995"

Label1 = txt

End Sub


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?