📄 form1.frm
字号:
VERSION 5.00
Object = "{67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0"; "MSADODC.OCX"
Object = "{CDE57A40-8B86-11D0-B3C6-00A0C90AEA82}#1.0#0"; "MSDATGRD.OCX"
Begin VB.Form FrmDataGrid
BorderStyle = 1 'Fixed Single
Caption = "员工信息表"
ClientHeight = 5805
ClientLeft = 45
ClientTop = 435
ClientWidth = 7545
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 5805
ScaleWidth = 7545
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command6
Caption = "删除数据"
Height = 495
Left = 5160
TabIndex = 6
Top = 5160
Width = 1815
End
Begin VB.CommandButton Command5
Caption = "取消修改"
Height = 495
Left = 2640
TabIndex = 5
Top = 5160
Width = 1695
End
Begin VB.CommandButton Command4
Caption = "保存修改"
Height = 495
Left = 360
TabIndex = 4
Top = 5160
Width = 1695
End
Begin VB.CommandButton Command3
Caption = "添加新信息"
Height = 495
Left = 5160
TabIndex = 3
Top = 4440
Width = 1815
End
Begin MSDataGridLib.DataGrid DataGrid1
Bindings = "Form1.frx":0000
Height = 3855
Left = 450
TabIndex = 2
Top = 240
Width = 6615
_ExtentX = 11668
_ExtentY = 6800
_Version = 393216
HeadLines = 1
RowHeight = 15
FormatLocked = -1 'True
BeginProperty HeadFont {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ColumnCount = 5
BeginProperty Column00
DataField = "Emp_name"
Caption = "员工姓名"
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 0
EndProperty
EndProperty
BeginProperty Column01
DataField = "Title"
Caption = "职务"
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 0
EndProperty
EndProperty
BeginProperty Column02
DataField = "Office_phone"
Caption = "办公电话"
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 0
EndProperty
EndProperty
BeginProperty Column03
DataField = "Mobile_phone"
Caption = "移动电话"
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 0
EndProperty
EndProperty
BeginProperty Column04
DataField = "Wage"
Caption = "工资"
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 0
EndProperty
EndProperty
SplitCount = 1
BeginProperty Split0
BeginProperty Column00
ColumnWidth = 1035.213
EndProperty
BeginProperty Column01
ColumnWidth = 1244.976
EndProperty
BeginProperty Column02
ColumnWidth = 1649.764
EndProperty
BeginProperty Column03
ColumnWidth = 1620.284
EndProperty
BeginProperty Column04
ColumnWidth = 764.787
EndProperty
EndProperty
End
Begin VB.CommandButton Command2
Caption = "退出程序"
Height = 495
Left = 2640
TabIndex = 1
Top = 4440
Width = 1695
End
Begin VB.CommandButton Command1
Caption = "读取数据"
Height = 495
Left = 360
TabIndex = 0
Top = 4440
Width = 1695
End
Begin MSAdodcLib.Adodc Adodc1
Height = 375
Left = 4080
Top = 4560
Visible = 0 'False
Width = 2775
_ExtentX = 4895
_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= 3
Appearance = 1
BackColor = -2147483643
ForeColor = -2147483640
Orientation = 0
Enabled = -1
Connect = "DSN=newdb"
OLEDBString = ""
OLEDBFile = ""
DataSourceName = "newdb"
OtherAttributes = ""
UserName = "sa"
Password = ""
RecordSource = "SELECT Emp_name,Title,Office_phone,Mobile_phone,Wage FROM Employee"
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
End
Attribute VB_Name = "FrmDataGrid"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
'判断是否选择了表中的一行
If Adodc1.Recordset.EOF = True Or Adodc1.Recordset.BOF = True Then
MsgBox "请选择要显示的行"
Exit Sub
End If
'读取数据
FrmShowData.Text1 = Adodc1.Recordset.Fields(0)
FrmShowData.Text2 = Adodc1.Recordset.Fields(1)
FrmShowData.Text3 = Adodc1.Recordset.Fields(2)
FrmShowData.Text4 = Adodc1.Recordset.Fields(3)
FrmShowData.Text5 = Adodc1.Recordset.Fields(4)
'打开显示数据窗口
FrmShowData.Show 1
End Sub
Private Sub Command2_Click()
End
End Sub
Private Sub Command3_Click()
Adodc1.Recordset.AddNew
Command1.Enabled = False
Command2.Enabled = False
End Sub
Private Sub Command4_Click()
If Trim(DataGrid1.Text) = "" Then
MsgBox "信息不能空白", vbOKOnly + vbExclamation, "警告"
Exit Sub
Else
'通过Update方法保存数据
Adodc1.Recordset.Update
'恢复其他控件的属性
Command1.Enabled = True
Command1.Enabled = True
'使“取消修改”按钮失效
Command5.Enabled = False
End If
End Sub
Private Sub Command6_Click()
Adodc1.Recordset.Delete
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -