📄 main.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 main
Caption = "个人日常管理"
ClientHeight = 7245
ClientLeft = 165
ClientTop = 555
ClientWidth = 6450
LinkTopic = "Form2"
Picture = "main.frx":0000
ScaleHeight = 7245
ScaleWidth = 6450
StartUpPosition = 2 '屏幕中心
Begin MSDataGridLib.DataGrid DataGrid1
Bindings = "main.frx":7281
Height = 615
Left = 0
TabIndex = 3
Top = 6480
Visible = 0 'False
Width = 1815
_ExtentX = 3201
_ExtentY = 1085
_Version = 393216
AllowUpdate = -1 'True
HeadLines = 1
RowHeight = 15
AllowAddNew = -1 'True
AllowDelete = -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 = 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.TextBox Text1
BackColor = &H00FFFFFF&
BorderStyle = 0 'None
BeginProperty Font
Name = "楷体_GB2312"
Size = 18
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C00000&
Height = 3015
Left = 2280
TabIndex = 1
Top = 3120
Width = 3135
End
Begin VB.Timer Timer1
Left = 5400
Top = 3600
End
Begin MSAdodcLib.Adodc Adodc1
Height = 735
Left = 3720
Top = 6360
Visible = 0 'False
Width = 2535
_ExtentX = 4471
_ExtentY = 1296
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=Microsoft.Jet.OLEDB.4.0;Data Source=任务安排.mdb;Persist Security Info=False"
OLEDBString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=任务安排.mdb;Persist Security Info=False"
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.Label Label2
Alignment = 2 'Center
BackStyle = 0 'Transparent
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C00000&
Height = 495
Left = 2040
TabIndex = 2
Top = 2280
Width = 2295
End
Begin VB.Label Label1
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "今日提醒:"
BeginProperty Font
Name = "楷体_GB2312"
Size = 18
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C00000&
Height = 495
Left = 2400
TabIndex = 0
Top = 1440
Width = 1815
End
Begin VB.Menu man
Caption = "日常管理"
Begin VB.Menu add
Caption = "添加任务"
End
Begin VB.Menu edit
Caption = "修改任务"
End
Begin VB.Menu delete
Caption = "删除任务"
End
Begin VB.Menu query
Caption = "查询任务"
End
Begin VB.Menu scan
Caption = "任务一览"
End
End
Begin VB.Menu system
Caption = "系统"
Begin VB.Menu quit
Caption = "退出"
End
End
End
Attribute VB_Name = "main"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub add_Click()
Load frminput
frminput.Show
End Sub
Private Sub delete_Click()
Load frmdelete
frmdelete.Show
End Sub
Private Sub edit_Click()
Load frmedit
frmedit.Show
End Sub
Private Sub Form_Load()
Label2.Caption = Date
Adodc1.Refresh
Adodc1.Recordset.MoveFirst
Do While Not Adodc1.Recordset.EOF
If Adodc1.Recordset("时间") = Label2.Caption Then
Text1.Text = Adodc1.Recordset.Fields("任务安排")
Exit Do
Else: Adodc1.Recordset.MoveNext
End If
Loop
If Adodc1.Recordset.EOF Then
Text1.Text = "今天无任务"
End If
'If Adodc1.Recordset.RecordCount > 0 Then
' Adodc1.Recordset.MoveFirst
'Adodc1.Recordset.Find "时间= '" & Label2.Caption & "'"
'Text1.Text = Adodc1.Recordset.Fields("任务安排")
' End If
End Sub
Private Sub query_Click()
Load frmquery
frmquery.Show
End Sub
Private Sub quit_Click()
End
End Sub
Private Sub scan_Click()
Load frmlist
frmlist.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -