📄 frmxsdh1.frm
字号:
VERSION 5.00
Begin VB.Form frmXSDH1
BorderStyle = 3 'Fixed Dialog
Caption = "销售订单信息"
ClientHeight = 6240
ClientLeft = 48
ClientTop = 336
ClientWidth = 6216
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 6240
ScaleWidth = 6216
ShowInTaskbar = 0 'False
StartUpPosition = 1 'CenterOwner
Begin VB.Frame Frame1
Caption = "其它信息:"
Height = 1692
Index = 3
Left = 120
TabIndex = 26
Top = 3960
Width = 6012
Begin VB.TextBox txtItem
Height = 1320
Index = 8
Left = 240
MaxLength = 200
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 28
Top = 240
Width = 5532
End
End
Begin VB.Frame Frame1
Caption = "产品信息:"
Height = 1452
Index = 2
Left = 120
TabIndex = 20
Top = 2400
Width = 6012
Begin VB.TextBox txtItem
Height = 276
Index = 7
Left = 3720
MaxLength = 200
MultiLine = -1 'True
TabIndex = 10
Top = 1080
Width = 2052
End
Begin VB.TextBox txtItem
Height = 270
Index = 6
Left = 1080
MaxLength = 20
TabIndex = 9
Top = 1080
Width = 1572
End
Begin VB.TextBox txtItem
Height = 270
Index = 5
Left = 3720
MaxLength = 20
TabIndex = 8
Top = 720
Width = 2052
End
Begin VB.TextBox txtItem
Height = 270
Index = 4
Left = 1080
MaxLength = 20
TabIndex = 7
Top = 720
Width = 1572
End
Begin VB.TextBox txtItem
Height = 270
Index = 3
Left = 1080
MaxLength = 20
TabIndex = 5
Top = 360
Width = 1572
End
Begin VB.ComboBox Combo1
Height = 288
Index = 2
Left = 3720
Style = 2 'Dropdown List
TabIndex = 6
Top = 360
Width = 2052
End
Begin VB.Label Label2
Caption = "订货金额:"
Height = 252
Index = 6
Left = 2880
TabIndex = 27
Top = 1080
Width = 1092
End
Begin VB.Label Label2
Caption = "折扣比例:"
Height = 252
Index = 2
Left = 360
TabIndex = 25
Top = 1080
Width = 1092
End
Begin VB.Label Label2
Caption = "订货单价:"
Height = 252
Index = 11
Left = 2880
TabIndex = 24
Top = 720
Width = 1092
End
Begin VB.Label Label2
Caption = "数 量:"
Height = 252
Index = 10
Left = 360
TabIndex = 23
Top = 720
Width = 1092
End
Begin VB.Label Label2
Caption = "产品代码:"
Height = 252
Index = 9
Left = 360
TabIndex = 22
Top = 360
Width = 1092
End
Begin VB.Label Label2
Caption = "产品名称:"
Height = 252
Index = 8
Left = 2880
TabIndex = 21
Top = 360
Width = 1092
End
End
Begin VB.Frame Frame1
Caption = "客户信息:"
Height = 852
Index = 1
Left = 120
TabIndex = 17
Top = 1440
Width = 6012
Begin VB.TextBox txtItem
Height = 270
Index = 2
Left = 1200
MaxLength = 20
TabIndex = 3
Top = 360
Width = 1572
End
Begin VB.ComboBox Combo1
Height = 288
Index = 1
Left = 3720
Style = 2 'Dropdown List
TabIndex = 4
Top = 360
Width = 2052
End
Begin VB.Label Label2
Caption = "客户名称:"
Height = 252
Index = 7
Left = 2880
TabIndex = 19
Top = 360
Width = 1092
End
Begin VB.Label Label2
Caption = "客户代码:"
Height = 252
Index = 4
Left = 360
TabIndex = 18
Top = 360
Width = 1092
End
End
Begin VB.Frame Frame1
Caption = "订单基本信息:"
Height = 1212
Index = 0
Left = 120
TabIndex = 13
Top = 120
Width = 6012
Begin VB.TextBox txtItem
Height = 270
Index = 1
Left = 1200
MaxLength = 20
TabIndex = 2
Top = 720
Width = 1572
End
Begin VB.ComboBox Combo1
Height = 288
Index = 0
Left = 3720
Style = 2 'Dropdown List
TabIndex = 1
Top = 360
Width = 2052
End
Begin VB.TextBox txtItem
Height = 270
Index = 0
Left = 1200
MaxLength = 20
TabIndex = 0
Top = 360
Width = 1572
End
Begin VB.Label Label2
Caption = "订单号:"
Height = 252
Index = 5
Left = 360
TabIndex = 16
Top = 720
Width = 1092
End
Begin VB.Label Label2
Caption = "订货日期:"
Height = 252
Index = 0
Left = 360
TabIndex = 15
Top = 360
Width = 1092
End
Begin VB.Label Label2
Caption = "业务员:"
Height = 252
Index = 1
Left = 2880
TabIndex = 14
Top = 360
Width = 1092
End
End
Begin VB.CommandButton cmdExit
Caption = "返回 (&X)"
Height = 375
Left = 3000
TabIndex = 12
Top = 5760
Width = 1215
End
Begin VB.CommandButton cmdSave
Caption = "保存 (&S)"
Height = 375
Left = 1560
TabIndex = 11
Top = 5760
Width = 1215
End
End
Attribute VB_Name = "frmXSDH1"
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 = 1 To 7
If Trim(txtItem(intCount) & " ") = "" Then
Select Case intCount
Case 1
sMeg = "销售订货单号"
Case 2
sMeg = "客户代码"
Case 3
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -