📄 frmusers.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Object = "{CDE57A40-8B86-11D0-B3C6-00A0C90AEA82}#1.0#0"; "MSDATGRD.OCX"
Begin VB.Form frmUsers
Caption = "帐号管理"
ClientHeight = 7230
ClientLeft = 60
ClientTop = 450
ClientWidth = 9075
Icon = "frmUsers.frx":0000
LinkTopic = "Form1"
MDIChild = -1 'True
ScaleHeight = 7230
ScaleWidth = 9075
WindowState = 2 'Maximized
Begin MSDataGridLib.DataGrid DataGrid1
Height = 4095
Left = 120
TabIndex = 6
Top = 840
Width = 8655
_ExtentX = 15266
_ExtentY = 7223
_Version = 393216
HeadLines = 1
RowHeight = 18
BeginProperty HeadFont {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ColumnCount = 2
BeginProperty Column00
DataField = ""
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 = ""
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
EndProperty
BeginProperty Column01
EndProperty
EndProperty
End
Begin VB.PictureBox Picture1
Appearance = 0 'Flat
ForeColor = &H80000008&
Height = 375
Left = 720
ScaleHeight = 345
ScaleWidth = 8025
TabIndex = 0
Top = 6600
Width = 8055
Begin VB.CommandButton cmdFind
Caption = "查询"
Default = -1 'True
Height = 375
Left = 0
TabIndex = 4
Top = 0
Width = 1815
End
Begin VB.CommandButton cmdAdd
Caption = "添加"
Height = 375
Left = 2160
TabIndex = 3
Top = 0
Width = 1815
End
Begin VB.CommandButton cmdMake
Caption = "修改"
Height = 375
Left = 4200
TabIndex = 2
Top = 0
Width = 1815
End
Begin VB.CommandButton cmdDelete
Caption = "删除"
Height = 375
Left = 6240
TabIndex = 1
Top = 0
Width = 1815
End
End
Begin MSComctlLib.ImageList ImageList1
Left = 7800
Top = 5760
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 32
ImageHeight = 32
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 5
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmUsers.frx":0BF2
Key = "Find"
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmUsers.frx":17F4
Key = "New"
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmUsers.frx":23F6
Key = "Make"
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmUsers.frx":36D8
Key = "Delete"
EndProperty
BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmUsers.frx":486A
Key = "Exit"
EndProperty
EndProperty
End
Begin MSComctlLib.Toolbar Toolbar1
Align = 1 'Align Top
Height = 660
Left = 0
TabIndex = 5
Top = 0
Width = 9075
_ExtentX = 16007
_ExtentY = 1164
ButtonWidth = 1032
ButtonHeight = 1005
AllowCustomize = 0 'False
Appearance = 1
ImageList = "ImageList1"
_Version = 393216
BeginProperty Buttons {66833FE8-8583-11D1-B16A-00C0F0283628}
NumButtons = 6
BeginProperty Button1 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "Find"
ImageKey = "Find"
EndProperty
BeginProperty Button2 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "New"
ImageKey = "New"
EndProperty
BeginProperty Button3 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "Make"
ImageKey = "Make"
EndProperty
BeginProperty Button4 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "Delete"
ImageKey = "Delete"
EndProperty
BeginProperty Button5 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button6 {66833FEA-8583-11D1-B16A-00C0F0283628}
Key = "Exit"
ImageKey = "Exit"
EndProperty
EndProperty
End
End
Attribute VB_Name = "frmUsers"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public rsUser As New ADODB.Recordset
Public sql As String
Private Sub cmdAdd_Click()
On Error GoTo DoError
rsUser.AddNew
Exit Sub
DoError:
MsgBox "[" + Str(err.Number) + "]" + err.Description, vbOKOnly + vbInformation, "错误"
End Sub
Private Sub cmdDelete_Click()
On Error GoTo DoError
rsUser.Delete adAffectCurrent
Exit Sub
DoError:
MsgBox "[" + Str(err.Number) + "]" + err.Description, vbOKOnly + vbInformation, "错误"
End Sub
Private Sub cmdFind_Click()
sql = "select * from users"
cn.exeSQL sql, rsUser
Set DataGrid1.DataSource = rsUser
End Sub
Private Sub Form_Load()
'cn.OpenDB
End Sub
Private Sub Form_Resize()
DataGrid1.Top = Toolbar1.height
DataGrid1.Left = 0
DataGrid1.Width = Me.ScaleWidth
DataGrid1.height = Me.ScaleHeight - Toolbar1.height - 1000
Picture1.Top = Me.ScaleHeight - 800
Picture1.Left = Me.ScaleWidth - 500 - Picture1.Width
End Sub
Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button)
Select Case Button.Key
Case "New"
cmdAdd_Click
Case "Find"
cmdFind_Click
Case "Make"
Case "delete"
cmdDelete_Click
Case "Exit"
Unload Me
End Select
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -