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

📄 frmmain.frm

📁 VB下的航空公司信息管理系统.关键词: 航空公司管理系统
💻 FRM
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Begin VB.MDIForm frmMain 
   BackColor       =   &H8000000C&
   Caption         =   "航空公司信息管理系统"
   ClientHeight    =   3090
   ClientLeft      =   165
   ClientTop       =   735
   ClientWidth     =   5475
   Icon            =   "frmMain.frx":0000
   LinkTopic       =   "MDIForm1"
   Picture         =   "frmMain.frx":08CA
   StartUpPosition =   3  '窗口缺省
   WindowState     =   2  'Maximized
   Begin MSComctlLib.StatusBar sbStatusBar 
      Align           =   2  'Align Bottom
      Height          =   270
      Left            =   0
      TabIndex        =   0
      Top             =   2820
      Width           =   5475
      _ExtentX        =   9657
      _ExtentY        =   476
      _Version        =   393216
      BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628} 
         NumPanels       =   3
         BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628} 
            AutoSize        =   1
            Object.Width           =   4022
            Text            =   "湖北民族学院信息工程学院"
            TextSave        =   "湖北民族学院信息工程学院"
         EndProperty
         BeginProperty Panel2 {8E3867AB-8586-11D1-B16A-00C0F0283628} 
            Style           =   6
            AutoSize        =   2
            TextSave        =   "2006-5-25"
         EndProperty
         BeginProperty Panel3 {8E3867AB-8586-11D1-B16A-00C0F0283628} 
            Style           =   5
            AutoSize        =   2
            TextSave        =   "16:02"
         EndProperty
      EndProperty
   End
   Begin VB.Menu menuSystem 
      Caption         =   "系统"
      Begin VB.Menu menuAdduser 
         Caption         =   "添加用户"
      End
      Begin VB.Menu menuDeluser 
         Caption         =   "删除用户"
      End
      Begin VB.Menu menuExit 
         Caption         =   "退出"
      End
   End
   Begin VB.Menu menuMairline 
      Caption         =   "航线信息管理"
      Begin VB.Menu menuCarbin 
         Caption         =   "舱位信息"
      End
      Begin VB.Menu menuPlane 
         Caption         =   "客机信息"
      End
      Begin VB.Menu menuAirline 
         Caption         =   "航线信息"
      End
   End
   Begin VB.Menu menuCustomerinfo 
      Caption         =   "客户信息管理"
      Begin VB.Menu menuCtype 
         Caption         =   "客户类型"
      End
      Begin VB.Menu menuCustomer 
         Caption         =   "客户信息"
      End
   End
   Begin VB.Menu menuMticket 
      Caption         =   "票务信息管理"
      Begin VB.Menu menuBookticket 
         Caption         =   "订票管理"
      End
   End
   Begin VB.Menu menuHelp 
      Caption         =   "帮助"
      Begin VB.Menu menuAbout 
         Caption         =   "About"
      End
   End
End
Attribute VB_Name = "frmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public puser As New ProUser.ClsMain

Private Sub MDIForm_Unload(Cancel As Integer)
    If Me.WindowState <> vbMinimized Then
        SaveSetting App.Title, "Settings", "MainLeft", Me.Left
        SaveSetting App.Title, "Settings", "MainTop", Me.Top
        SaveSetting App.Title, "Settings", "MainWidth", Me.Width
        SaveSetting App.Title, "Settings", "MainHeight", Me.Height
    End If
End Sub


Private Sub menuAbout_Click()
    frmAbout.Show 0
End Sub

Private Sub menuAdduser_Click()
    puser.frmAddUseShow
End Sub

Private Sub menuAirline_Click()
    frmAirline.txtSQL = "select * from airlineInfo"
    frmAirline.Show 0
End Sub

Private Sub menuBookticket_Click()
    frmTicket.txtSQL = "select * from ticketInfo "
    frmTicket.Show 0
End Sub

Private Sub menuCarbin_Click()
    frmService.txtSQL = "select * from serviceInfo"
    frmService.Show 0
End Sub

Private Sub menuCtype_Click()
    frmcType.txtSQL = "select * from customerType"
    frmcType.Show 0
End Sub

Private Sub menuCustomer_Click()
    frmCustomer.txtSQL = "select * from customerInfo"
    frmCustomer.Show 0
End Sub

Private Sub menuDeluser_Click()
    puser.frmDelShow
End Sub

Private Sub menuExit_Click()
    Unload Me
End Sub


Private Sub menuPlane_Click()
    frmPlane.txtSQL = "select * from planeInfo"
    frmPlane.Show 0
End Sub

⌨️ 快捷键说明

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