📄 stuadvance.frm
字号:
VERSION 5.00
Begin VB.Form StuAdvance
BackColor = &H00C0C0FF&
BorderStyle = 3 'Fixed Dialog
Caption = "Student Advance Report"
ClientHeight = 3390
ClientLeft = 45
ClientTop = 435
ClientWidth = 5835
Icon = "StuAdvance.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 3390
ScaleWidth = 5835
ShowInTaskbar = 0 'False
Begin VB.Data InitData
Caption = "Data1"
Connect = "Access"
DatabaseName = "D:\visual basic\Library\Data\visdata\initialsc.mdb"
DefaultCursorType= 0 'DefaultCursor
DefaultType = 2 'UseODBC
Exclusive = 0 'False
Height = 300
Left = 2400
Options = 0
ReadOnly = 0 'False
RecordsetType = 1 'Dynaset
RecordSource = "initials"
Top = 1560
Visible = 0 'False
Width = 1140
End
Begin VB.CommandButton CmdCancel
Cancel = -1 'True
Caption = "Exit"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 3960
TabIndex = 5
Top = 2520
Width = 1215
End
Begin VB.OptionButton Opt3
BackColor = &H00C0C0FF&
Caption = "3 Books"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 4125
TabIndex = 2
ToolTipText = "Shows the report of student having 3 Books."
Top = 1920
Width = 1215
End
Begin VB.OptionButton Opt2
BackColor = &H00C0C0FF&
Caption = "2 Books"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 4125
TabIndex = 1
ToolTipText = "Shows the report of students having 2 Books."
Top = 1200
Width = 1215
End
Begin VB.OptionButton Opt1
BackColor = &H00C0C0FF&
Caption = "1 Book"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 4125
TabIndex = 0
ToolTipText = "Show the report of students only having 1 Book."
Top = 600
Width = 1215
End
Begin VB.CommandButton CmdShow
Caption = "Show"
Default = -1 'True
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 2760
TabIndex = 4
Top = 2520
Width = 1215
End
Begin VB.Label Label2
BackColor = &H00C0C0FF&
Height = 495
Left = 2760
TabIndex = 6
Top = 2400
Width = 1215
End
Begin VB.Label Label1
BackColor = &H00C0C0FF&
Caption = "Show report of student Having"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Left = 120
TabIndex = 3
Top = 660
Width = 3855
End
End
Attribute VB_Name = "StuAdvance"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'This library project is created by Vipin Panicker. E-Mail: itsvipin@hotmail.com
Private Sub cmdCancel_Click()
Unload Me
End Sub
Private Sub CmdShow_Click()
StuAdvReport.Show
End Sub
Private Sub Form_Load()
InitData.DatabaseName = App.Path & "\initialsc.mdb"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -