📄 dialogkhfind.frm
字号:
Width = 1815
_ExtentX = 3201
_ExtentY = 582
ConnectMode = 0
CursorLocation = 3
IsolationLevel = -1
ConnectionTimeout= 15
CommandTimeout = 30
CursorType = 3
LockType = 3
CommandType = 2
CursorOptions = 0
CacheSize = 50
MaxRecords = 0
BOFAction = 0
EOFAction = 0
ConnectStringType= 1
Appearance = 1
BackColor = -2147483643
ForeColor = -2147483640
Orientation = 0
Enabled = -1
Connect = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=sa;Initial Catalog=hgrs;Data Source=SERVER"
OLEDBString = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=sa;Initial Catalog=hgrs;Data Source=SERVER"
OLEDBFile = ""
DataSourceName = ""
OtherAttributes = ""
UserName = ""
Password = ""
RecordSource = "tbm"
Caption = "Adcbm"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
_Version = 393216
End
Begin MSDataListLib.DataCombo DCombo1
Bindings = "Dialogkhfind.frx":0000
DataSource = "Adcbm"
Height = 330
Left = 1920
TabIndex = 0
Top = 840
Width = 1335
_ExtentX = 2355
_ExtentY = 582
_Version = 393216
ListField = "bmname"
Text = ""
End
Begin MSAdodcLib.Adodc Adodc1
Height = 330
Left = 3360
Top = 1560
Visible = 0 'False
Width = 2055
_ExtentX = 3625
_ExtentY = 582
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 = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=sa;Initial Catalog=hgrs;Data Source=SERVER"
OLEDBString = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=sa;Initial Catalog=hgrs;Data Source=SERVER"
OLEDBFile = ""
DataSourceName = ""
OtherAttributes = ""
UserName = ""
Password = ""
RecordSource = "tbm"
Caption = "Adodc1"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
_Version = 393216
End
Begin MSAdodcLib.Adodc Adczg
Height = 330
Left = 4680
Top = 840
Visible = 0 'False
Width = 1575
_ExtentX = 2778
_ExtentY = 582
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 = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=sa;Initial Catalog=hgrs;Data Source=SERVER"
OLEDBString = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=sa;Initial Catalog=hgrs;Data Source=SERVER"
OLEDBFile = ""
DataSourceName = ""
OtherAttributes = ""
UserName = ""
Password = ""
RecordSource = "tzg"
Caption = "Adczg"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
_Version = 393216
End
Begin VB.Label Label5
Caption = "结束日期"
Height = 255
Left = 1200
TabIndex = 12
Top = 1560
Width = 735
End
Begin VB.Label Label4
Caption = "开始日期"
Height = 255
Left = 1200
TabIndex = 11
Top = 1200
Width = 735
End
Begin VB.Label Label3
Caption = "部门"
Height = 255
Left = 1440
TabIndex = 10
Top = 840
Width = 375
End
Begin VB.Label Label2
Caption = "姓名"
Height = 255
Left = 1440
TabIndex = 9
Top = 480
Width = 375
End
Begin VB.Label Label1
Caption = "请输入查询工号"
Height = 255
Left = 480
TabIndex = 8
Top = 120
Width = 1335
End
End
Attribute VB_Name = "Dialogkhfind"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub CancelButton_Click()
Unload Me
End Sub
Private Sub Combo1_Change()
End Sub
Private Sub DataCombo1_Click(Area As Integer)
Textbmid.Text = Adcbm.Recordset.Fields("bmid").Value
End Sub
Private Sub Command2_Click()
Do While Not Formkh.Adckh.Recordset.EOF
Loop
End Sub
Private Sub OKButton_Click()
Dim vzgid, vzgname, vbmid, vdate1, vdate2, vbmname
vzgid = Textzgid.Text
vzgname = Textzgname.Text
vbmname = DCombo1.Text
Adodc1.RecordSource = "select * from tbm where bmname='" & vbmname & "' "
Adodc1.Refresh
If Not Adodc1.Recordset.EOF Then
vbmid = Adodc1.Recordset.Fields("bmid").Value
Textbmid.Text = vbmid
End If
vdate1 = Textdate1.Text
vdate2 = Textdate1.Text
Formkh.Adckh.RecordSource = "select * from khrecord where zgid= '" & vzgid & "'or zgname='" & vzgname & "'or bmid='" & vbmid & "'or (sdate>='" & vdate1 & "' and sdate<='" & vdate2 & "') "
Formkh.Adckh.Refresh
End Sub
Private Sub Textdate1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
Textdate2.SetFocus
End If
End Sub
Private Sub Textzgid_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
Textzgname.SetFocus
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -