📄 frmchoice.frm
字号:
VERSION 5.00
Object = "{0BA686C6-F7D3-101A-993E-0000C0EF6F5E}#2.0#0"; "THREED20.OCX"
Begin VB.Form frmChoice
BackColor = &H00C0C0C0&
BorderStyle = 3 'Fixed Dialog
Caption = "个人信息管理"
ClientHeight = 2805
ClientLeft = 45
ClientTop = 330
ClientWidth = 2715
Icon = "frmChoice.frx":0000
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2805
ScaleWidth = 2715
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin Threed.SSPanel SSPanel1
Height = 2835
Left = 0
TabIndex = 1
Top = -30
Width = 2745
_ExtentX = 4842
_ExtentY = 5001
_Version = 131073
BackColor = 12632256
BevelInner = 1
Begin VB.PictureBox Picture1
BorderStyle = 0 'None
Height = 1665
Left = 180
Picture = "frmChoice.frx":0442
ScaleHeight = 1665
ScaleWidth = 2415
TabIndex = 0
Top = 990
Width = 2415
End
Begin Threed.SSCommand cmdAdd
Height = 345
Left = 300
TabIndex = 5
Top = 180
Width = 1035
_ExtentX = 1826
_ExtentY = 609
_Version = 131073
Font3D = 1
MousePointer = 99
ForeColor = 255
BackStyle = 1
MouseIcon = "frmChoice.frx":DD04
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Caption = "信息添加"
ButtonStyle = 3
End
Begin Threed.SSCommand Command1
Height = 345
Left = 1350
TabIndex = 4
Top = 180
Width = 1035
_ExtentX = 1826
_ExtentY = 609
_Version = 131073
Font3D = 1
MousePointer = 99
ForeColor = 255
BackStyle = 1
MouseIcon = "frmChoice.frx":E01E
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Caption = "家庭情况"
ButtonStyle = 3
End
Begin Threed.SSCommand Command2
Height = 345
Left = 300
TabIndex = 3
Top = 570
Width = 1035
_ExtentX = 1826
_ExtentY = 609
_Version = 131073
Font3D = 1
MousePointer = 99
ForeColor = 255
BackStyle = 1
MouseIcon = "frmChoice.frx":E338
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Caption = "学籍异动"
ButtonStyle = 3
End
Begin Threed.SSCommand Command3
Height = 345
Left = 1350
TabIndex = 2
Top = 570
Width = 1035
_ExtentX = 1826
_ExtentY = 609
_Version = 131073
Font3D = 1
MousePointer = 99
ForeColor = 255
BackStyle = 1
MouseIcon = "frmChoice.frx":E652
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Caption = "返回"
ButtonStyle = 3
End
End
End
Attribute VB_Name = "frmChoice"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdAdd_Click()
On Error Resume Next
frmAddForall.Show 1
End Sub
Private Sub cmdAdd_MouseExit(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
cmdAdd.ForeColor = vbRed
End Sub
Private Sub cmdAdd_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
cmdAdd.ForeColor = vbBlue
End Sub
Private Sub Command1_Click()
On Error Resume Next
frmJTQKB.Show 1
End Sub
Private Sub Command1_MouseEnter(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
Command1.ForeColor = vbBlue
End Sub
Private Sub Command1_MouseExit(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
Command1.ForeColor = vbRed
End Sub
Private Sub Command2_Click()
On Error Resume Next
frmShowAll.Show 1
End Sub
Private Sub Command2_MouseEnter(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
Command2.ForeColor = vbBlue
End Sub
Private Sub Command2_MouseExit(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
Command2.ForeColor = vbRed
End Sub
Private Sub Command3_Click()
On Error Resume Next
Unload Me
End Sub
Private Sub Command3_MouseEnter(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
Command3.ForeColor = vbBlue
End Sub
Private Sub Command3_MouseExit(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
Command3.ForeColor = vbRed
End Sub
Private Sub Form_Load()
On Error Resume Next
frmChoice.Caption = "学号为" & ID
End Sub
Private Sub Form_Unload(Cancel As Integer)
On Error Resume Next
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -