form1.frm

来自「一个用vb编的数据库的基本操作。」· FRM 代码 · 共 70 行

FRM
70
字号
VERSION 5.00
Begin VB.Form Form1 
   BackColor       =   &H00FFFFFF&
   Caption         =   "Form1"
   ClientHeight    =   4275
   ClientLeft      =   165
   ClientTop       =   855
   ClientWidth     =   9105
   LinkMode        =   1  'Source
   LinkTopic       =   "Form1"
   LockControls    =   -1  'True
   Picture         =   "Form1.frx":0000
   ScaleHeight     =   4275
   ScaleWidth      =   9105
   StartUpPosition =   3  '窗口缺省
   WhatsThisHelp   =   -1  'True
   Begin VB.Menu show 
      Caption         =   "显示"
   End
   Begin VB.Menu ins 
      Caption         =   "插入"
   End
   Begin VB.Menu search 
      Caption         =   "查询"
   End
   Begin VB.Menu del 
      Caption         =   "删除"
   End
   Begin VB.Menu change 
      Caption         =   "更新"
   End
   Begin VB.Menu exit 
      Caption         =   "退出"
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False


Private Sub change_Click()
Form6.show
End Sub

Private Sub DBGrid1_Click()

End Sub

Private Sub del_Click()
Form5.show
End Sub

Private Sub exit_Click()
Unload Me
End Sub

Private Sub ins_Click()
Form3.show
End Sub

Private Sub search_Click()
Form4.show
End Sub

Private Sub show_Click()
Form2.show
End Sub

⌨️ 快捷键说明

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