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

📄 frmabout.frm

📁 图书馆信息管理系统,具有文档和源代码.是毕业设计的好参考
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmAbout 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "关于宛枫书社图书管理系统"
   ClientHeight    =   4230
   ClientLeft      =   2340
   ClientTop       =   1935
   ClientWidth     =   6735
   ClipControls    =   0   'False
   Icon            =   "frmAbout.frx":0000
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2919.621
   ScaleMode       =   0  'User
   ScaleWidth      =   6324.513
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.PictureBox picIcon 
      AutoSize        =   -1  'True
      ClipControls    =   0   'False
      Height          =   1860
      Left            =   120
      Picture         =   "frmAbout.frx":0E42
      ScaleHeight     =   1264.2
      ScaleMode       =   0  'User
      ScaleWidth      =   1179.92
      TabIndex        =   1
      Top             =   120
      Width           =   1740
   End
   Begin VB.CommandButton cmdOK 
      Cancel          =   -1  'True
      Caption         =   "确定"
      Default         =   -1  'True
      Height          =   345
      Left            =   5085
      TabIndex        =   0
      Top             =   3105
      Width           =   1500
   End
   Begin VB.CommandButton cmdSysInfo 
      Caption         =   "帮助(&H)"
      Height          =   345
      Left            =   5100
      TabIndex        =   2
      Top             =   3555
      Width           =   1485
   End
   Begin VB.Line Line1 
      BorderColor     =   &H00808080&
      BorderStyle     =   6  'Inside Solid
      Index           =   1
      X1              =   84.515
      X2              =   6197.741
      Y1              =   1936.061
      Y2              =   1936.061
   End
   Begin VB.Label labelMiaoShu 
      AutoSize        =   -1  'True
      Caption         =   "指导老师:王改性"
      ForeColor       =   &H00000000&
      Height          =   180
      Left            =   2010
      TabIndex        =   3
      Top             =   1200
      Width           =   1440
   End
   Begin VB.Label lblTitle 
      AutoSize        =   -1  'True
      Caption         =   "宛枫书社图书管理系统 V1.0 Beta 测试版"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   10.5
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00000000&
      Height          =   210
      Left            =   2010
      TabIndex        =   5
      Top             =   240
      Width           =   3885
   End
   Begin VB.Line Line1 
      BorderColor     =   &H00FFFFFF&
      BorderWidth     =   2
      Index           =   0
      X1              =   98.6
      X2              =   6197.741
      Y1              =   1946.414
      Y2              =   1946.414
   End
   Begin VB.Label lblVersion 
      AutoSize        =   -1  'True
      Caption         =   "版本号:V1.0"
      Height          =   180
      Left            =   2040
      TabIndex        =   6
      Top             =   660
      Width           =   1080
   End
   Begin VB.Label JingGao 
      AutoSize        =   -1  'True
      Caption         =   "警告: ..."
      ForeColor       =   &H00000000&
      Height          =   180
      Left            =   240
      TabIndex        =   4
      Top             =   3000
      Width           =   810
   End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CmdOK_Click()
  Unload Me
End Sub

Private Sub cmdSysInfo_Click()
Unload Me
Load FrmHelp
FrmHelp.Show vbModal
End Sub

Private Sub Form_Load()
Dim strMS As String
Dim jinGao As String

strMS = "指导老师:王改性" & vbCrLf
strMS = strMS & "系统分析与设计:胡孟杰" & vbCrLf
strMS = strMS & "程序制作:胡孟杰" & vbCrLf
strMS = strMS & "数据库设计:胡孟杰  蔡大臣" & vbCrLf
strMS = strMS & "文档整理、制作:蔡大臣  张航" & vbCrLf
strMS = strMS & "图片处理:张莘 胡孟杰"
labelMiaoShu.Caption = strMS

lblVersion.Caption = "版本号:V1.0 Beta" & vbCrLf & "授权类型:免费版"

jinGao = "Copyright(C)2003-2004.All rights reserved." & vbCrLf
jinGao = jinGao & "河南职业技术师范学院信管专业99级" & vbCrLf
jinGao = jinGao & "http://hmj.student.hvttc.edu.cn" & vbCrLf
jinGao = jinGao & "河南.新乡 2003.3"
JingGao.Caption = jinGao
End Sub

⌨️ 快捷键说明

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