📄 qingjia.frm
字号:
VERSION 5.00
Object = "{67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0"; "MSADODC.OCX"
Begin VB.Form qingjia
BorderStyle = 4 'Fixed ToolWindow
Caption = "请假记录"
ClientHeight = 4005
ClientLeft = 45
ClientTop = 285
ClientWidth = 6405
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4005
ScaleWidth = 6405
ShowInTaskbar = 0 'False
StartUpPosition = 1 '所有者中心
Begin MSAdodcLib.Adodc Adodc1
Height = 375
Left = 6600
Top = 2520
Visible = 0 'False
Width = 1455
_ExtentX = 2566
_ExtentY = 661
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 = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
_Version = 393216
End
Begin VB.Frame Frame2
Height = 2775
Left = 0
TabIndex = 11
Top = 1200
Width = 6375
Begin VB.TextBox Text7
Height = 300
Left = 1080
TabIndex = 16
Top = 360
Width = 5055
End
Begin VB.TextBox Text8
Height = 300
Left = 1080
TabIndex = 15
Top = 840
Width = 5055
End
Begin VB.TextBox Text9
Height = 1185
Left = 1080
MultiLine = -1 'True
TabIndex = 14
Top = 1320
Width = 4095
End
Begin VB.CommandButton Command1
Caption = "添加"
Height = 375
Left = 5400
TabIndex = 13
Top = 1560
Width = 735
End
Begin VB.CommandButton Command2
Caption = "退出"
Height = 375
Left = 5400
TabIndex = 12
Top = 2040
Width = 735
End
Begin VB.Label Label7
AutoSize = -1 'True
Caption = "原因"
Height = 180
Left = 240
TabIndex = 19
Top = 360
Width = 360
End
Begin VB.Label Label8
AutoSize = -1 'True
Caption = "批准老师"
Height = 180
Left = 120
TabIndex = 18
Top = 840
Width = 720
End
Begin VB.Label Label9
AutoSize = -1 'True
Caption = "备注"
Height = 180
Left = 240
TabIndex = 17
Top = 1320
Width = 360
End
End
Begin VB.Frame Frame1
Height = 1215
Left = 0
TabIndex = 0
Top = 0
Width = 6375
Begin VB.TextBox Text6
Height = 300
Left = 4800
TabIndex = 21
Top = 680
Width = 1215
End
Begin VB.TextBox Text1
Height = 300
Left = 720
TabIndex = 5
Top = 200
Width = 1215
End
Begin VB.TextBox Text2
Height = 300
Left = 720
TabIndex = 4
Top = 670
Width = 1215
End
Begin VB.TextBox Text3
Height = 300
Left = 2880
TabIndex = 3
Top = 200
Width = 1215
End
Begin VB.TextBox Text4
Height = 300
Left = 2880
TabIndex = 2
Top = 670
Width = 1215
End
Begin VB.TextBox Text5
Height = 300
Left = 4800
TabIndex = 1
Top = 200
Width = 1215
End
Begin VB.Label Label6
AutoSize = -1 'True
Caption = "天数"
Height = 180
Left = 4320
TabIndex = 20
Top = 720
Width = 360
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "日期"
Height = 180
Left = 240
TabIndex = 10
Top = 240
Width = 360
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "姓名"
Height = 180
Left = 240
TabIndex = 9
Top = 720
Width = 360
End
Begin VB.Label Label3
AutoSize = -1 'True
Caption = "班级"
Height = 180
Left = 2280
TabIndex = 8
Top = 240
Width = 360
End
Begin VB.Label Label4
AutoSize = -1 'True
Caption = "公寓"
Height = 180
Left = 2280
TabIndex = 7
Top = 720
Width = 360
End
Begin VB.Label Label5
AutoSize = -1 'True
Caption = "寝室"
Height = 180
Left = 4320
TabIndex = 6
Top = 240
Width = 360
End
End
End
Attribute VB_Name = "qingjia"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
On Error Resume Next
If Text1.Text = "" Or Text2.Text = "" Or Text3.Text = "" Or Text4.Text = "" Or Text5.Text = "" Or Text6.Text = "" Or Text7.Text = "" Or Text8.Text = "" Or Text9.Text = "" Then
MsgBox "请输入详细信息!", , "系统提示"
Else
With Adodc1
.Recordset.AddNew
.Recordset.Fields(0).Value = Text1.Text
.Recordset.Fields(1).Value = Text2.Text
.Recordset.Fields(2).Value = Text3.Text
.Recordset.Fields(3).Value = Text4.Text
.Recordset.Fields(4).Value = Text5.Text
.Recordset.Fields(5).Value = Text6.Text
.Recordset.Fields(6).Value = Text7.Text
.Recordset.Fields(7).Value = Text8.Text
.Recordset.Fields(8).Value = Text9.Text
.Recordset.Update
End With
Set main.DataGrid1.datasource = Adodc1
main.DataGrid1.Refresh
End If
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Load()
provider = "provider=Microsoft.jet.oledb.4.0"
datasource = "data source=" & App.Path & "\DB.mdb"
With Adodc1
.Mode = adModeReadWrite
.ConnectionString = provider & ";" & datasource
.CommandType = adCmdTable
.RecordSource = "qingjia"
.Refresh
End With
Text1.Text = Date
Text1.Enabled = False
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -