⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aboutus.frm

📁 这是一个我帮师妹做的软件的大作业
💻 FRM
字号:
VERSION 5.00
Begin VB.Form aboutUs 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "版本说明"
   ClientHeight    =   3885
   ClientLeft      =   6630
   ClientTop       =   1530
   ClientWidth     =   5895
   Icon            =   "aboutUs.frx":0000
   LinkTopic       =   "Form3"
   LockControls    =   -1  'True
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3885
   ScaleWidth      =   5895
   ShowInTaskbar   =   0   'False
   Begin VB.Timer Timer2 
      Left            =   5280
      Top             =   360
   End
   Begin VB.Frame Frame1 
      Height          =   135
      Left            =   120
      TabIndex        =   6
      Top             =   2650
      Width           =   5655
   End
   Begin VB.CommandButton Command1 
      Caption         =   "确定"
      Height          =   320
      Left            =   4560
      TabIndex        =   4
      Top             =   2880
      Width           =   1215
   End
   Begin VB.PictureBox Picture2 
      Height          =   2535
      Left            =   120
      Picture         =   "aboutUs.frx":08CA
      ScaleHeight     =   2475
      ScaleWidth      =   915
      TabIndex        =   3
      Top             =   120
      Width           =   975
   End
   Begin VB.PictureBox Picture1 
      Height          =   1335
      Left            =   1200
      ScaleHeight     =   1275
      ScaleWidth      =   4515
      TabIndex        =   0
      Top             =   1320
      Width           =   4575
      Begin VB.TextBox Text1 
         BackColor       =   &H8000000F&
         BorderStyle     =   0  'None
         Height          =   1335
         Left            =   120
         MultiLine       =   -1  'True
         TabIndex        =   2
         Text            =   "aboutUs.frx":19ADA
         Top             =   120
         Width           =   2895
      End
      Begin VB.VScrollBar VScroll1 
         Height          =   2535
         Left            =   4200
         TabIndex        =   1
         Top             =   1440
         Visible         =   0   'False
         Width           =   255
      End
      Begin VB.Timer Timer1 
         Left            =   -120
         Top             =   2520
      End
   End
   Begin VB.Label Label3 
      Caption         =   "学生信息管理系统1.0                                                              版权所有(C)  "
      Height          =   735
      Left            =   1200
      TabIndex        =   7
      Top             =   360
      Width           =   3615
   End
   Begin VB.Label Label1 
      Caption         =   $"aboutUs.frx":19B2D
      Height          =   615
      Left            =   120
      TabIndex        =   5
      Top             =   2880
      Width           =   4215
   End
End
Attribute VB_Name = "aboutUs"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim words As String
Dim i As Integer
Dim txtword As String
Dim lenth As Integer


Private Sub Command1_Click()
Unload Me
End Sub

Private Sub Form_Activate()
Timer1.Enabled = True
End Sub

Private Sub Form_Load()
Timer1.Interval = 100
VScroll1.Max = Picture1.Height
VScroll1.Min = 0 - Text1.Height
VScroll1.Value = VScroll1.Max
End Sub

Private Sub Form_Unload(Cancel As Integer)
frmMain.Enabled = True
End Sub

Private Sub Timer1_Timer()
If VScroll1.Value >= VScroll1.Min + 20 Then
VScroll1.Value = VScroll1.Value - 30
Else
VScroll1.Value = VScroll1.Max
DoEvents
End If
Text1.Top = VScroll1.Value
Text1.Visible = True

End Sub



⌨️ 快捷键说明

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