📄 contractawardfrm.frm
字号:
VERSION 5.00
Object = "{67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0"; "MSADODC.OCX"
Begin VB.Form contractawardfrm
Caption = "合同签定"
ClientHeight = 5325
ClientLeft = 60
ClientTop = 450
ClientWidth = 7395
LinkTopic = "Form1"
MDIChild = -1 'True
ScaleHeight = 5325
ScaleWidth = 7395
WindowState = 2 'Maximized
Begin MSAdodcLib.Adodc Adodc1
Height = 495
Left = 3000
Top = 120
Visible = 0 'False
Width = 1455
_ExtentX = 2566
_ExtentY = 873
ConnectMode = 0
CursorLocation = 3
IsolationLevel = -1
ConnectionTimeout= 15
CommandTimeout = 30
CursorType = 3
LockType = 3
CommandType = 1
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;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=cms;Data Source=E10"
OLEDBString = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=cms;Data Source=E10"
OLEDBFile = ""
DataSourceName = ""
OtherAttributes = ""
UserName = ""
Password = ""
RecordSource = "select * from contractinfo"
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 VB.TextBox Text7
DataSource = "Adodc1"
Height = 495
Left = 3240
TabIndex = 13
Top = 3600
Width = 2000
End
Begin VB.CommandButton Command3
Caption = "取消"
Height = 495
Left = 5640
TabIndex = 12
Top = 3240
Width = 1215
End
Begin VB.CommandButton Command2
Caption = "重置"
Height = 495
Left = 5640
TabIndex = 11
Top = 2040
Width = 1215
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 495
Left = 5640
TabIndex = 10
Top = 840
Width = 1215
End
Begin VB.TextBox Text5
DataSource = "Adodc1"
Height = 495
Left = 3250
TabIndex = 9
Top = 3000
Width = 2000
End
Begin VB.TextBox Text4
DataSource = "Adodc1"
Height = 495
Left = 3250
TabIndex = 8
Top = 2400
Width = 2000
End
Begin VB.TextBox Text3
DataSource = "Adodc1"
Height = 495
Left = 3250
TabIndex = 7
Top = 1800
Width = 2000
End
Begin VB.TextBox Text2
DataSource = "Adodc1"
Height = 495
Left = 3250
TabIndex = 6
Top = 1200
Width = 2000
End
Begin VB.TextBox Text1
DataSource = "Adodc1"
Height = 495
Left = 3250
TabIndex = 5
Top = 600
Width = 2000
End
Begin VB.Label Label7
BackStyle = 0 'Transparent
Caption = "备注:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1485
TabIndex = 14
Top = 3720
Width = 1815
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "合同编号:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1485
TabIndex = 2
Top = 1920
Width = 1215
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "合同名称:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1485
TabIndex = 1
Top = 1320
Width = 1215
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "职员编号:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1485
TabIndex = 0
Top = 720
Width = 1215
End
Begin VB.Label Label5
BackStyle = 0 'Transparent
Caption = "合同签定日期:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1485
TabIndex = 4
Top = 3120
Width = 1815
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "合同期限:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1485
TabIndex = 3
Top = 2520
Width = 1215
End
End
Attribute VB_Name = "contractawardfrm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
If Text1 = "" Or Text2 = "" Or Text3 = "" Or Text4 = "" Or Text5 = "" Or Text7 = "" Then
MsgBox "信息不完整!"
Else
X = MsgBox("确定要签定这份合同吗?", vbYesNo + vbQuestion, "确认")
If X = vbYes Then
Adodc1.RecordSource = "select * from contractinfo"
Adodc1.Recordset.AddNew
Adodc1.Recordset.Fields(0) = Trim(Text1.Text)
Adodc1.Recordset.Fields(1) = Trim(Text2.Text)
Adodc1.Recordset.Fields(2) = Trim(Text3.Text)
Adodc1.Recordset.Fields(3) = Trim(Text4.Text)
Adodc1.Recordset.Fields(4) = Trim(Text5.Text)
Adodc1.Recordset.Fields(6) = 0
Adodc1.Recordset.Fields(7) = Trim(Text7.Text)
Adodc1.Recordset.Update
Adodc1.Refresh
MsgBox "合同签定成功!", vbOKOnly + vbExclamation, "合同签定"
DataReport1.Show
DataEnvironment1.rscontractList.Requery '动态更新
Unload Me
End If
End If
End Sub
Private Sub Command2_Click()
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""
Text4.Text = ""
Text5.Text = ""
Text7.Text = ""
End Sub
Private Sub Command3_Click()
Unload Me
End Sub
Private Sub Form_Load()
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""
Text4.Text = ""
Text5.Text = ""
Text7.Text = ""
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -