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

📄 form2.frm

📁 一个用vb编写指纹识别程序
💻 FRM
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form Form2 
   Caption         =   "欢迎使用计算机指纹登陆系统!"
   ClientHeight    =   4545
   ClientLeft      =   4305
   ClientTop       =   2415
   ClientWidth     =   6885
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   4560.201
   ScaleMode       =   0  'User
   ScaleWidth      =   7000
   Begin MSComctlLib.ProgressBar ProgressBar1 
      Height          =   225
      Left            =   0
      TabIndex        =   1
      Top             =   4320
      Visible         =   0   'False
      Width           =   6885
      _ExtentX        =   12144
      _ExtentY        =   397
      _Version        =   393216
      Appearance      =   1
   End
   Begin VB.CommandButton Command1 
      Caption         =   "S K I N"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   10.5
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   495
      Left            =   5520
      TabIndex        =   0
      Top             =   3720
      Width           =   1215
   End
   Begin VB.Image Image1 
      Height          =   4215
      Left            =   0
      Top             =   0
      Width           =   6855
   End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim Counter As Integer
ProgressBar1.Min = 0
ProgressBar1.max = 5000
ProgressBar1.Visible = True
ProgressBar1.Value = ProgressBar1.Min
For Counter = 0 To 5000
ProgressBar1.Value = Counter
Next Counter
ProgressBar1.Visible = False
ProgressBar1.Value = ProgressBar1.Min
Form2.Hide
Form1.Show
Form1.SetFocus
End Sub

Private Sub Form_Load()
Form2.Image1.Picture = LoadPicture("E:\资料\重要资料\毕设\卞喆\1.jpg ")
End Sub

⌨️ 快捷键说明

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