【VB开源代码栏目提醒】:文章导读:在新的一年中,各位网友都进入紧张的学习或是工作阶段。网学会员整理了VB开源代码-frmAirline1.frm的相关内容供大家参考,祝大家在新的一年里工作和学习顺利!
VERSION 5.00
Begin VB.Form frmAirline1
BorderStyle = 3 'Fixed Dialog
Caption = "航线信息"
ClientHeight = 4200
ClientLeft = 48
ClientTop = 336
ClientWidth = 6396
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4200
ScaleWidth = 6396
ShowInTaskbar = 0 'False
StartUpPosition = 1 'CenterOwner
Begin VB.ComboBox Combo1
Height = 288
Index = 1
Left = 4680
Style = 2 'Dropdown List
TabIndex = 5
Top = 1200
Width = 1212
End
Begin VB.TextBox txtNo
Height = 270
Left = 1080
TabIndex = 21
TabStop = 0 'False
Top = 3720
Visible = 0 'False
Width = 735
End
Begin VB.Frame Frame1
Caption = "航线信息:"
Height = 3372
Left = 120
TabIndex = 12
Top = 120
Width = 6132
Begin VB.TextBox txtItem
Height = 1080
Index = 7
Left = 1560
MaxLength = 80
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 9
Top = 2160
Width = 4212
End
Begin VB.TextBox txtItem
Height = 270
Index = 6
Left = 1560
MaxLength = 20
TabIndex = 8
Top = 1800
Width = 1212
End
Begin VB.TextBox txtItem
Height = 270
Index = 5
Left = 4560
MaxLength = 20
TabIndex = 7
Top = 1440
Width = 1212
End
Begin VB.TextBox txtItem
Height = 270
Index = 4
Left = 1560
MaxLength = 20
TabIndex = 6
Top = 1440
Width = 1212
End
Begin VB.TextBox txtItem
Height = 270
Index = 3
Left = 1560
MaxLength = 20
TabIndex = 4
Top = 1080
Width = 1212
End
Begin VB.TextBox txtItem
Height = 270
Index = 2
Left = 4560
MaxLength = 20
TabIndex = 3
Top = 720
Width = 1212
End
Begin VB.ComboBox Combo1
Height = 288
Index = 0
Left = 1560
Style = 2 'Dropdown List
TabIndex = 2
Top = 720
Width = 1212
End
Begin VB.TextBox txtItem
Height = 270
Index = 0
Left = 1560
MaxLength = 8
TabIndex = 0
Top = 360
Width = 1212
End
Begin VB.TextBox txtItem
Height = 270
Index = 1
Left = 4560
MaxLength = 20
TabIndex = 1
Top = 360
Width = 1212
End
Begin VB.Label Label2
Caption = "头等舱价格:"
Height = 252
Index = 4
Left = 360
TabIndex = 23
Top = 1800
Width = 1212
End
Begin
VB.Label Label2
Caption = "公务舱价格:"
Height = 252
Index = 3
Left = 3360
TabIndex = 22
Top = 1440
Width = 1212
End
Begin VB.Label Label2
Caption = "备 注 信 息:"
Height = 252
Index = 10
Left = 360
TabIndex = 20
Top = 2160
Width = 1212
End
Begin VB.Label Label2
Caption = "经济舱价格:"
Height = 252
Index = 2
Left = 360
TabIndex = 19
Top = 1440
Width = 1212
End
Begin VB.Label Label2
Caption = "客 机 编 号:"
Height = 252
Index = 8
Left = 3360
TabIndex = 18
Top = 1080
Width = 1212
End
Begin VB.Label Label2
Caption = " 到 达 时 间:"
Height = 252
Index = 7
Left = 360
TabIndex = 17
Top = 1080
Width = 1212
End
Begin VB.Label Label2
Caption = "出 发 时 间:"
Height = 252
Index = 6
Left = 3360
TabIndex = 16
Top = 720
Width = 1212
End
Begin VB.Label Label2
Caption = " 航 班 日 期:"
Height = 252
Index = 5
Left = 360
TabIndex = 15
Top = 720
Width = 1212
End
Begin VB.Label Label2
Caption = " 出 发 城 市:"
Height = 252
Index = 0
Left = 360
TabIndex = 14
Top = 360
Width = 1212
End
Begin VB.Label Label2
Caption = "到 达 城 市:"
Height = 252
Index = 1
Left = 3360
TabIndex = 13
Top = 360
Width = 1212
End
End
Begin VB.CommandButton cmdExit
Caption = "返回 (&X)"
Height = 375
Left = 3600
TabIndex = 11
Top = 3720
Width = 1215
End
Begin VB.CommandButton cmdSave
Caption = "保存 (&S)"
Height = 375
Left = 2160
TabIndex = 10
Top = 3720
Width = 1215
End
End
Attribute VB_Name = "frmAirline1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'是否改动过记录,ture为改过
Dim mblChange As Boolean
Dim mrc As ADODB.Recordset
Public txtSQL As String
Private Sub cmdExit_Click()
If mblChange And cmdSave.Enabled Then
If MsgBox("保存当前记录的变化吗?", vbOKCancel + vbExclamation, "警告") = vbOK Then
'保存
Call cmdSave_Click
End If
End If
Unload Me
End Sub
Private Sub cmdSave_Click()
Dim intCount As Integer
Dim sMeg As String
Dim MsgText As String
For intCount = 0 To 6
If Trim(txtItem(intCount) & " ") = "" Then
Select Case intCount
Case 0
sMeg = "出发城市"
Case 1
sMeg = "到达城市"
Case 2
sMeg = "出发时间"
Case 3
sMeg = "到达时间"
Case 4
sMeg = "
经济舱价格"
Case 5
sMeg = "公务舱价格"
Case 6