📄 mainword.frm
字号:
VERSION 5.00
Begin VB.Form MainWord
Caption = "密码寻找器(教务管理系统V1.0)"
ClientHeight = 855
ClientLeft = 60
ClientTop = 345
ClientWidth = 3945
Icon = "MainWord.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 855
ScaleWidth = 3945
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox PassWord
BeginProperty Font
Name = "黑体"
Size = 15
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 420
Left = 120
TabIndex = 1
Top = 240
Width = 2295
End
Begin VB.CommandButton Command1
Caption = "搜索"
Height = 375
Left = 2640
TabIndex = 0
Top = 240
Width = 975
End
End
Attribute VB_Name = "MainWord"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Declare Function GetVolumeInformation Lib "kernel32" _
Alias "GetVolumeInformationA" (ByVal lpRootPathName As String, _
ByVal lpVolumeNameBuffer As String, ByVal nVolumeNameSize As Long, _
lpVolumeSerialNumber As Long, lpMaximumComponentLength As Long, _
lpFileSystemFlags As Long, ByVal lpFileSystemNameBuffer As String, _
ByVal nFileSystemNameSize As Long) As Long
Const FILE_VOLUME_IS_COMPRESSED = &H8000
Public Sub Command1_Click()
Dim VolSeri As Long, compress As Long
AA = GetVolumeInformation("c:\", VolName, 256, VolSeri, Maxlen, Sysflag, fsysName, 256)
PassWord.Text = Hex(VolSeri)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -