frmMain.frm
上传用户:darkchong
上传日期:2007-06-21
资源大小:44k
文件大小:4k
源码类别:

交通/航空行业

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
  3. Begin VB.MDIForm frmMain 
  4.    BackColor       =   &H8000000C&
  5.    Caption         =   "大唐航空公司信息管理系统"
  6.    ClientHeight    =   2484
  7.    ClientLeft      =   132
  8.    ClientTop       =   1032
  9.    ClientWidth     =   3744
  10.    LinkTopic       =   "MDIForm1"
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin MSComctlLib.StatusBar sbStatusBar 
  13.       Align           =   2  'Align Bottom
  14.       Height          =   264
  15.       Left            =   0
  16.       TabIndex        =   0
  17.       Top             =   8256
  18.       Width           =   12192
  19.       _ExtentX        =   21505
  20.       _ExtentY        =   466
  21.       _Version        =   393216
  22.       BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628} 
  23.          NumPanels       =   3
  24.          BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628} 
  25.             AutoSize        =   1
  26.             Object.Width           =   15896
  27.             Text            =   "Status"
  28.             TextSave        =   "Status"
  29.          EndProperty
  30.          BeginProperty Panel2 {8E3867AB-8586-11D1-B16A-00C0F0283628} 
  31.             Style           =   6
  32.             AutoSize        =   2
  33.             TextSave        =   "2002-1-22"
  34.          EndProperty
  35.          BeginProperty Panel3 {8E3867AB-8586-11D1-B16A-00C0F0283628} 
  36.             Style           =   5
  37.             AutoSize        =   2
  38.             TextSave        =   "8:24"
  39.          EndProperty
  40.       EndProperty
  41.    End
  42.    Begin VB.Menu menuSystem 
  43.       Caption         =   "系统"
  44.       Begin VB.Menu menuModifypwd 
  45.          Caption         =   "修改密码"
  46.       End
  47.       Begin VB.Menu menuAdduser 
  48.          Caption         =   "添加用户"
  49.       End
  50.       Begin VB.Menu menuExit 
  51.          Caption         =   "退出"
  52.       End
  53.    End
  54.    Begin VB.Menu menuMairline 
  55.       Caption         =   "航线信息管理"
  56.       Begin VB.Menu menuCarbin 
  57.          Caption         =   "舱位信息"
  58.       End
  59.       Begin VB.Menu menuPlane 
  60.          Caption         =   "客机信息"
  61.       End
  62.       Begin VB.Menu menuAirline 
  63.          Caption         =   "航线信息"
  64.       End
  65.    End
  66.    Begin VB.Menu menuCustomerinfo 
  67.       Caption         =   "客户信息管理"
  68.       Begin VB.Menu menuCtype 
  69.          Caption         =   "客户类型"
  70.       End
  71.       Begin VB.Menu menuCustomer 
  72.          Caption         =   "客户信息"
  73.       End
  74.    End
  75.    Begin VB.Menu menuMticket 
  76.       Caption         =   "票务信息管理"
  77.       Begin VB.Menu menuBookticket 
  78.          Caption         =   "订票管理"
  79.       End
  80.    End
  81.    Begin VB.Menu menuHelp 
  82.       Caption         =   "帮助"
  83.       Begin VB.Menu menuAbout 
  84.          Caption         =   "About"
  85.       End
  86.    End
  87. End
  88. Attribute VB_Name = "frmMain"
  89. Attribute VB_GlobalNameSpace = False
  90. Attribute VB_Creatable = False
  91. Attribute VB_PredeclaredId = True
  92. Attribute VB_Exposed = False
  93. Private Sub MDIForm_Load()
  94.     Me.Left = GetSetting(App.Title, "Settings", "MainLeft", 1000)
  95.     Me.Top = GetSetting(App.Title, "Settings", "MainTop", 1000)
  96.     Me.Width = GetSetting(App.Title, "Settings", "MainWidth", 6500)
  97.     Me.Height = GetSetting(App.Title, "Settings", "MainHeight", 6500)
  98.   
  99. End Sub
  100. Private Sub MDIForm_Unload(Cancel As Integer)
  101.     If Me.WindowState <> vbMinimized Then
  102.         SaveSetting App.Title, "Settings", "MainLeft", Me.Left
  103.         SaveSetting App.Title, "Settings", "MainTop", Me.Top
  104.         SaveSetting App.Title, "Settings", "MainWidth", Me.Width
  105.         SaveSetting App.Title, "Settings", "MainHeight", Me.Height
  106.     End If
  107. End Sub
  108. Private Sub menuAirline_Click()
  109.     frmAirline.txtSQL = "select * from airlineInfo"
  110.     frmAirline.Show 0
  111. End Sub
  112. Private Sub menuBookticket_Click()
  113.     frmTicket.txtSQL = "select * from ticketInfo "
  114.     frmTicket.Show 0
  115. End Sub
  116. Private Sub menuCarbin_Click()
  117.     frmService.txtSQL = "select * from serviceInfo"
  118.     frmService.Show 0
  119. End Sub
  120. Private Sub menuCtype_Click()
  121.     frmcType.txtSQL = "select * from customerType"
  122.     frmcType.Show 0
  123. End Sub
  124. Private Sub menuCustomer_Click()
  125.     frmCustomer.txtSQL = "select * from customerInfo"
  126.     frmCustomer.Show 0
  127. End Sub
  128. Private Sub menuPlane_Click()
  129.     frmPlane.txtSQL = "select * from planeInfo"
  130.     frmPlane.Show 0
  131. End Sub