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

📄 form1.frm

📁 为一个单位的老师写的小工具
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form1 
   BackColor       =   &H00FF0000&
   BorderStyle     =   1  'Fixed Single
   Caption         =   "信息管理小工具"
   ClientHeight    =   600
   ClientLeft      =   45
   ClientTop       =   435
   ClientWidth     =   13185
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   600
   ScaleWidth      =   13185
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton Command5 
      Caption         =   "修改数据库字段"
      Height          =   495
      Left            =   4920
      TabIndex        =   4
      Top             =   0
      Width           =   2055
   End
   Begin VB.CommandButton Command3 
      Caption         =   "退出"
      Height          =   495
      Left            =   11040
      TabIndex        =   3
      Top             =   0
      Width           =   1335
   End
   Begin VB.CommandButton Command1 
      Caption         =   "使用指南"
      Height          =   495
      Left            =   7080
      TabIndex        =   2
      Top             =   0
      Width           =   2175
   End
   Begin VB.CommandButton Command4 
      Caption         =   "普通查询与修改"
      Height          =   495
      Left            =   2640
      TabIndex        =   1
      Top             =   0
      Width           =   2175
   End
   Begin VB.CommandButton Command2 
      BackColor       =   &H00C0E0FF&
      Caption         =   "录入新信息"
      Height          =   495
      Left            =   120
      Picture         =   "Form1.frx":0000
      TabIndex        =   0
      Top             =   0
      Width           =   2415
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Form7.Show 1
End Sub

Private Sub Command2_Click()
Form4.Show 1
End Sub

Private Sub Command3_Click()
Unload Me
End Sub

Private Sub Command4_Click()
Form2.Show 1
End Sub

Private Sub Command5_Click()
Form8.Show 1
End Sub

Private Sub Form_Load()
   '不知道以后有没有用
   maxCount = 10

   Me.Left = 0 '(Screen.Width - Me.Width) / 2     '使窗体居中
   Me.Top = 0   'Screen.Height - Me.Height) / 2
   
   Me.Width = Screen.Width
   Me.Height = 1000
   Command3.Left = Screen.Width - Command3.Width
   
End Sub

⌨️ 快捷键说明

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