📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
AutoRedraw = -1 'True
BackColor = &H000000FF&
BorderStyle = 1 'Fixed Single
Caption = "浪潮破解机(新年版)"
ClientHeight = 1890
ClientLeft = 840
ClientTop = 45
ClientWidth = 3555
Icon = "Form1.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1890
ScaleWidth = 3555
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command5
Caption = "启动STU"
Height = 375
Left = 240
TabIndex = 5
Top = 120
Width = 1335
End
Begin VB.CommandButton Command6
Caption = "退出程序"
Height = 375
Left = 1920
TabIndex = 6
Top = 1080
Width = 1335
End
Begin VB.CommandButton Command1
Caption = "破解广播教学"
Height = 375
Left = 240
TabIndex = 1
Top = 1080
Width = 1335
End
Begin VB.CommandButton Command2
Caption = "恢复广播教学"
Height = 375
Left = 1920
TabIndex = 2
Top = 600
Width = 1335
End
Begin VB.CommandButton Command4
Caption = "彻底解除"
Height = 375
Left = 1920
TabIndex = 4
Top = 120
Width = 1335
End
Begin VB.CommandButton Command3
Caption = "程序配置"
Height = 375
Left = 240
TabIndex = 3
Top = 600
Width = 1335
End
Begin VB.Label Label1
BackColor = &H000000FF&
Caption = "祝大家新年快乐、万事如意!"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFF00&
Height = 255
Left = 120
TabIndex = 0
Top = 1560
Width = 3375
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'=================================================================================================================
' 小飞侠制作 2.0版 http://gx86.2hu.org http://gx86.k666.com
'=================================================================================================================
Dim dc
Dim dc2
Dim stufile1
Private Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal x As Long, ByVal y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
Private Const HWND_TOPMOST = -1
Private Const SWP_SHOWWINDOWS = &H40
Const SPI_SCREENSAVERRUNNING = 97
Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, lpvParam As Any, ByVal fuWinIni As Long) As Long
Private Sub Command1_Click()
Dim pOld As Boolean
Call SystemParametersInfo(SPI_SCREENSAVERRUNNING, False, pOld, 0)
MsgBox "破解成功!", vbInformation, "提示"
Call mouguan
End Sub
Private Sub Command2_Click()
Dim pOld As Boolean
Call SystemParametersInfo(SPI_SCREENSAVERRUNNING, True, pOld, 0)
MsgBox "恢复成功!", vbInformation, "提示"
Call moukai
End Sub
Private Sub Command3_Click()
Form2.Show
End Sub
Private Sub Command4_Click()
Call okkill
MsgBox "关闭成功!", vbInformation, "提示"
End Sub
Private Sub Command5_Click()
On Error GoTo error1
Shell stufile1 & "\student.exe"
Exit Sub
error1:
MsgBox "学生机软件路径错误或者你没有配置程序!", vbInformation, "错误"
End Sub
Private Sub Command6_Click()
End
End Sub
Private Sub Form_Load()
Dim retValue As Long
If App.PrevInstance = True Then
End
End If
'retValue = SetWindowPos(Me.hwnd, HWND_TOPMOST, Me.CurrentX, Me.CurrentY, 250, 165, SWP_SHOWWINDOWS)
retValue = SetWindowPos(Me.hwnd, HWND_TOPMOST, Me.CurrentX + 750, Me.CurrentY + 520, 235, 152, SWP_SHOWWINDOWS)
dc = 3
RegisterServiceProcess GetCurrentProcessId, 1
stufile1 = GetSetting("postu", "2.0", "stufile") '读注册表Postu下的2.0下的Stufile
Exit Sub
End Sub
Private Sub Form_Unload(Cancel As Integer)
RegisterServiceProcess GetCurrentProcessId, 0
End Sub
Private Sub Label1_Click()
Shell "NOTEPAD.exe readme.txt"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -