📄 form4.frm
字号:
Left = 1320
TabIndex = 6
Text = "%"
Top = 120
Visible = 0 'False
Width = 2175
End
Begin MSAdodcLib.Adodc Adodc1
Height = 495
Left = 3000
Top = 0
Visible = 0 'False
Width = 1815
_ExtentX = 3201
_ExtentY = 873
ConnectMode = 0
CursorLocation = 3
IsolationLevel = -1
ConnectionTimeout= 15
CommandTimeout = 30
CursorType = 3
LockType = 3
CommandType = 8
CursorOptions = 0
CacheSize = 50
MaxRecords = 0
BOFAction = 0
EOFAction = 0
ConnectStringType= 1
Appearance = 1
BackColor = -2147483643
ForeColor = -2147483640
Orientation = 0
Enabled = -1
Connect = ""
OLEDBString = ""
OLEDBFile = ""
DataSourceName = ""
OtherAttributes = ""
UserName = ""
Password = ""
RecordSource = ""
Caption = "Adodc1"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "楷体_GB2312"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
_Version = 393216
End
Begin VB.CommandButton Command4
Caption = "选择"
Height = 375
Left = 11880
TabIndex = 4
Top = 600
Width = 975
End
Begin VB.TextBox Text2
BackColor = &H8000000F&
BeginProperty DataFormat
Type = 1
Format = "yyyy/MM/dd"
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 3
EndProperty
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 405
Left = 2400
TabIndex = 2
Top = 1440
Width = 4335
End
Begin VB.TextBox Text1
BackColor = &H8000000F&
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 405
Left = 2400
TabIndex = 0
Top = 600
Width = 9495
End
Begin MSAdodcLib.Adodc Adodc2
Height = 495
Left = 0
Top = 0
Visible = 0 'False
Width = 1815
_ExtentX = 3201
_ExtentY = 873
ConnectMode = 0
CursorLocation = 3
IsolationLevel = -1
ConnectionTimeout= 15
CommandTimeout = 30
CursorType = 3
LockType = 3
CommandType = 8
CursorOptions = 0
CacheSize = 50
MaxRecords = 0
BOFAction = 0
EOFAction = 0
ConnectStringType= 1
Appearance = 1
BackColor = -2147483643
ForeColor = -2147483640
Orientation = 0
Enabled = -1
Connect = ""
OLEDBString = ""
OLEDBFile = ""
DataSourceName = ""
OtherAttributes = ""
UserName = ""
Password = ""
RecordSource = ""
Caption = "Adodc1"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "楷体_GB2312"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
_Version = 393216
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "结束时间"
Height = 375
Left = 840
TabIndex = 11
Top = 2280
Width = 1575
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = $"Form4.frx":0000
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 1335
Left = 6960
TabIndex = 9
Top = 1440
Width = 3375
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "开始时间"
Height = 375
Left = 840
TabIndex = 3
Top = 1440
Width = 1575
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "客户名称"
Height = 375
Left = 840
TabIndex = 1
Top = 600
Width = 1575
End
End
Attribute VB_Name = "Form4"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Adodc2.RecordSource = "select khmc,gtnr,gtsj from gtqk where khmc like'" & Text1.Text & "'and khid like'" & Form1.Text7 & "'and gtsj between '" & Text5 & "' and '" & Text7 & "'"
Adodc2.Refresh
If Adodc2.Recordset.BOF = True And Adodc2.Recordset.EOF = True Then
MsgBox "没有您要查询的记录,请核实!", vbExclamation, "系统提示您"
GoTo 1
End If
Set DataGrid2.DataSource = Adodc2
1 End Sub
Private Sub Command2_Click()
Unload Form4
End Sub
Private Sub Command4_Click()
Adodc1.RecordSource = "select khmc from gtqk where khmc like'" & Text3.Text & "'and khid like'" & Form1.Text7 & "'and khmc<>'' group by khmc"
Adodc1.Refresh
Set DataGrid1.DataSource = Adodc1
Set Text4.DataSource = Adodc1
Text4.DataField = "khmc"
DataGrid1.Visible = True
End Sub
Private Sub DataGrid1_Click()
DataGrid1.Visible = False
End Sub
Private Sub DataGrid1_LostFocus()
DataGrid1.Visible = False
End Sub
Private Sub Form_Click()
DataGrid1.Visible = False
End Sub
Private Sub Form_Load()
Adodc1.ConnectionString = "Provider=SQLOLEDB.1;Password=" & Form1.Text6 & ";Persist Security Info=True;User ID=" & Form1.Text5 & ";Initial Catalog=" & Form1.Text8 & ";Data Source=" & Form1.Text4 & ""
Adodc2.ConnectionString = "Provider=SQLOLEDB.1;Password=" & Form1.Text6 & ";Persist Security Info=True;User ID=" & Form1.Text5 & ";Initial Catalog=" & Form1.Text8 & ";Data Source=" & Form1.Text4 & ""
Text7 = Date + Time
End Sub
Private Sub Text2_Change()
Text5 = Text2
End Sub
Private Sub Text4_Change()
Text1.Text = Trim(Text4)
End Sub
Private Sub Text6_Change()
Text7 = Text6
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -