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

📄 form1.frm

📁 一个银行的管理系统
💻 FRM
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form welcome 
   BackColor       =   &H80000005&
   BorderStyle     =   0  'None
   Caption         =   "欢迎"
   ClientHeight    =   7410
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   9600
   LinkTopic       =   "Form1"
   ScaleHeight     =   7410
   ScaleWidth      =   9600
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.TextBox Text2 
      Height          =   375
      Left            =   0
      TabIndex        =   1
      Top             =   7080
      Width           =   255
   End
   Begin MSComctlLib.ProgressBar ProgressBar1 
      Height          =   375
      Left            =   0
      TabIndex        =   2
      Top             =   7080
      Width           =   9615
      _ExtentX        =   16960
      _ExtentY        =   661
      _Version        =   393216
      Appearance      =   1
   End
   Begin VB.TextBox Text1 
      Height          =   270
      Left            =   2520
      TabIndex        =   0
      Top             =   0
      Visible         =   0   'False
      Width           =   735
   End
   Begin VB.Timer Timer2 
      Interval        =   100
      Left            =   960
      Top             =   0
   End
   Begin VB.Timer Timer1 
      Interval        =   12000
      Left            =   0
      Top             =   0
   End
   Begin VB.Image Image1 
      Height          =   7200
      Left            =   0
      Picture         =   "Form1.frx":0000
      Top             =   0
      Width           =   9600
   End
End
Attribute VB_Name = "welcome"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
  MDIForm1.Show
End Sub




Private Sub Form_Load()
    LoginSucceeded = False
    
    
    
    '''''''''''''''''''''''
    '设定日期,更新利息
    '''''''''''''''''''''''
    
End Sub



Private Sub Image1_Click()
  Unload Me
  logIn.Show
End Sub

Private Sub Timer1_Timer()
  Unload Me
  logIn.Show
End Sub

Private Sub Timer2_Timer()
   Dim t As Integer
   Text1.Text = Val(Text1.Text) + 1
   t = (Val(Text1.Text)) Mod 4
Select Case t
   Case 0
     Text2.Text = "-"
    Case 1
     Text2.Text = "\"
    Case 2
     Text2.Text = "|"
    Case 3
     Text2.Text = "/"
    End Select
    If Val(Text1.Text) <= 100 Then
      ProgressBar1.Value = ProgressBar1 + 1
      End If
      
   
   
End Sub

⌨️ 快捷键说明

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