📄 frmqincompare.frm
字号:
VERSION 5.00
Object = "{86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCT2.OCX"
Begin VB.Form frmqincompare
Caption = "请款单与提货单对比表"
ClientHeight = 2535
ClientLeft = 2970
ClientTop = 3495
ClientWidth = 5535
Icon = "frmqincompare.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2535
ScaleWidth = 5535
Begin VB.CommandButton cmdok
Caption = "查询(&F)"
Height = 340
Left = 1560
Style = 1 'Graphical
TabIndex = 5
Top = 2040
UseMaskColor = -1 'True
Width = 1095
End
Begin VB.CommandButton cmdcancel
Caption = "关闭(&C)"
Height = 340
Left = 3000
Style = 1 'Graphical
TabIndex = 4
Top = 2040
UseMaskColor = -1 'True
Width = 1095
End
Begin VB.Frame Frame1
Caption = "参数选项"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000C0&
Height = 1815
Left = 120
TabIndex = 0
Top = 120
Width = 5295
Begin VB.TextBox Txtclient
Height = 270
Left = 1440
MaxLength = 10
TabIndex = 9
Top = 480
Width = 1095
End
Begin VB.CommandButton cmdsolocate
Height = 285
Left = 2520
Picture = "frmqincompare.frx":0442
Style = 1 'Graphical
TabIndex = 8
Top = 480
Width = 375
End
Begin MSComCtl2.DTPicker DTP2
Height = 375
Left = 3600
TabIndex = 7
Top = 1080
Width = 1455
_ExtentX = 2566
_ExtentY = 661
_Version = 393216
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CalendarForeColor= 16711680
CalendarTitleBackColor= 255
Format = 61538305
CurrentDate = 36400
End
Begin MSComCtl2.DTPicker DTP1
Height = 375
Left = 1440
TabIndex = 6
Top = 1080
Width = 1575
_ExtentX = 2778
_ExtentY = 661
_Version = 393216
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CalendarForeColor= 16711680
CalendarTitleBackColor= 255
Format = 61538305
CurrentDate = 36400
End
Begin VB.Label lblclient
ForeColor = &H000000C0&
Height = 255
Left = 3000
TabIndex = 10
Top = 480
Width = 1575
End
Begin VB.Label lbl1
Caption = "提货日期:"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 255
Index = 2
Left = 240
TabIndex = 3
Top = 1080
Width = 1215
End
Begin VB.Label lbl1
Caption = "选取客户:"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 255
Index = 3
Left = 240
TabIndex = 2
Top = 480
Width = 1095
End
Begin VB.Label lbl
Caption = "到:"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 255
Index = 0
Left = 3120
TabIndex = 1
Top = 1080
Width = 375
End
End
End
Attribute VB_Name = "frmqincompare"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim rs As Recordset
Private Sub cmdCancel_Click()
Unload Me
End Sub
Private Sub cmdok_Click()
Txtclient.Text = Trim(Txtclient.Text)
If Len(Trim(Txtclient.Text)) <> 0 Then
Set clitb = New Recordset
clitb.Open "select * from client where clino=" & "'" & Txtclient.Text & "'", db, adOpenStatic, adLockOptimistic
If clitb.RecordCount = 0 Then
MsgBox " 客户资料出错!!!,请重新输入", vbCritical, MSG2
Exit Sub
End If
End If
If Len(Trim(Txtclient.Text)) = 0 Then
sqlcc2 = "select * from compareqinti where (titotal<>qintotal or qinno is null) and (din_date>=" & "'" & DTP1.value & "'" & " and din_date<=" & "'" & DTP2.value & "')" & " order by tino,din_date"
Else
sqlcc2 = "select * from compareqinti where (titotal<>qintotal or qinno is null) and (din_date>=" & "'" & DTP1.value & "'" & " and din_date<=" & "'" & DTP2.value & "'" & " and clino=" & "'" & Txtclient.Text & "')" & " order by tino,din_date"
End If
'ARqinCompare.Show 1'2002-08-24
Set rs = New Recordset
rs.Open sqlcc2, db, adOpenStatic, adLockOptimistic
If rs.RecordCount > 0 Then
rs.Close
Set rs = Nothing
ARqinCompare.Show 1
Else
rs.Close
Set rs = Nothing
MsgBox "不能找到相应的记录!!!", vbCritical + vbOKOnly, MSG2
Me.MousePointer = 0
Exit Sub
End If
End Sub
Private Sub cmdsolocate_Click()
Set pubfindtb = New Recordset
pubfindtb.Open "select clino,s_name,post,tele from client order by clino", db, adOpenStatic, adLockPessimistic
Call GenBrowse(Txtclient.Text, "客户", "qin1")
Call clientdisplay("client", Txtclient.Text, lblclient)
End Sub
Private Sub Form_Activate()
Txtclient.SetFocus
End Sub
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyEscape Then Unload Me
End Sub
Private Sub Form_Load()
DTP1.value = "1/1/2002"
DTP2.value = Date
End Sub
Private Sub Form_Resize()
'On Error Resume Next
'Me.Top = 0
'Me.Left = 50
End Sub
Private Sub Txtclient_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 13 Then
Set clitb = New Recordset
clitb.Open "select * from client where clino=" & "'" & Txtclient.Text & "'", db, adOpenStatic, adLockOptimistic
If clitb.RecordCount = 0 Then
If Txtclient.Text <> "" Then cmdsolocate_Click
End If
Call clientdisplay("client", Txtclient.Text, lblclient)
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -