乱云飞 - 翼展电脑服务中心


不能被截屏录屏的窗口

2025-3-4 乱云飞 评论(0) 浏览(1)

[该内容已加密,请点击标题输入密码访问]

集成进程检测,进程守护,设置参数,退出密码功能源码V20

2025-3-3 乱云飞 评论(0) 浏览(1)

[该内容已加密,请点击标题输入密码访问]

虚拟监控摄像机VirtualCamera参数设置程序

2025-3-2 乱云飞 评论(0) 浏览(5)

放在软件目录运行即可,不用手动修改配置文件了。
https://wwwez.lanzoul.com/iUCKE2pa7cmj

112233.png


虚拟监控软件GUI配置程序源码,测试OK

2025-3-1 乱云飞 评论(0) 浏览(2)

[该内容已加密,请点击标题输入密码访问]

录屏软件跟随指定程序运行

2025-2-28 乱云飞 评论(0) 浏览(9) 标签: 电脑录屏 软件录屏 程序录屏 窗口录屏

#Persistent
SetTimer, CheckProcess, 3000
return
CheckProcess:
    Process, Exist, QQ.exe
    QQExist := ErrorLevel
    if (QQExist)
    {
        Process, Exist, onvif.dll
        if !ErrorLevel
        {
            Run, onvif.dll
        }
    }
    else
    {
        Process, Close, onvif.dll
        Run, taskkill /f /im onvif.dll,, Hide
    }
return

Esc::ExitApp

AHK从其他程序窗口中提取数据

2025-2-27 乱云飞 评论(0) 浏览(4)

#Persistent
SetTitleMatchMode, 2
DetectHiddenWindows, On
;等待目标窗口出现
WinWait, ahk_exe EyeWeapon.exe ahk_class _EyeWeaponS
WinGet, hWnd, ID, ahk_exe EyeWeapon.exe ahk_class _EyeWeaponS
;获取EDIT3内容
ControlGetText, edit3Content, Edit3, ahk_id %hWnd%
;显示结果(可根据需要修改为其他操作)
MsgBox, ID:%edit3Content%
ExitApp

NIRCMD修改窗口标题

2025-2-26 乱云飞 评论(0) 浏览(10)

nircmd win settext title "Form1" "新标题"  //准确匹配

nircmd win settext ititle "Form1" "新标题" //模糊匹配

nircmd.exe win settext [find方式] [窗口标识] "[新标题]"
其中,[find方式]用于指定窗口的查找方式(如title、class、handle等),[窗口标识]是对应的窗口标题、类名或句柄,[新标题]是修改后的标题内容。

MiniHex

2025-2-24 乱云飞 评论(0) 浏览(6)

0D 0A-->FF FE

时间插件源代码测试OK

2025-2-21 乱云飞 评论(0) 浏览(2)

[该内容已加密,请点击标题输入密码访问]

VB6.0读取INI参数,解决了中文后面的多出空格的问题,测试OK

2025-2-20 乱云飞 评论(1) 浏览(14)

Option Explicit

' API函数声明,用于读取INI文件
Private Declare Function GetPrivateProfileString Lib "kernel32" Alias "GetPrivateProfileStringA" (ByVal lpApplicationName As String, ByVal lpKeyName As Any, ByVal lpDefault As String, ByVal lpReturnedString As String, ByVal nSize As Long, ByVal lpFileName As String) As Long

Private Sub Form_Load()
    Me.Hide
    Dim iniFilePath As String
    Dim 文本 As String
    Dim 坐标X As String
    Dim 坐标Y As String
    Dim 字体 As String
    Dim 颜色 As String
    Dim 字号 As String
    Dim 透明 As String
    Dim 时间 As String
    
    ' 指定INI文件路径
    iniFilePath = App.Path & "\logo.ini"
    
    ' 读取INI文件中的参数
    文本 = ReadIniValue("logo", "文本", iniFilePath)
    坐标X = ReadIniValue("logo", "坐标X", iniFilePath)
    坐标Y = ReadIniValue("logo", "坐标Y", iniFilePath)
    字体 = ReadIniValue("logo", "字体", iniFilePath)
    颜色 = ReadIniValue("logo", "颜色", iniFilePath)
    字号 = ReadIniValue("logo", "字号", iniFilePath)
    透明 = ReadIniValue("logo", "透明", iniFilePath)
    时间 = ReadIniValue("logo", "时间", iniFilePath)
    
    ' 生成完整的命令行
    Dim command As String
    command = "start text.dll" & _
              " /m:" & 文本 & _
              " /x:" & 坐标X & _
              " /y:" & 坐标Y & _
              " /f:" & 字体 & _
              " /fh:" & 字号 & _
              " /ftc:""" & 颜色 & """" & _
              " /o:" & 透明 & _
              " /t:" & 时间 & _
              " /fi:0 /fbc:""255 255 255"" /bc:""0 0 0"""
    
    '在窗口上显示生成的命令
    'Me.Caption = "生成命令行"
    'Me.AutoRedraw = True
    'Me.Print "生成的命令:"
    'Me.Print command
    
    ' 将生成的命令保存到1.bat文件中
    Dim FilePath As String
    FilePath = App.Path & "\1.bat"
    
    Open FilePath For Output As #1
    Print #1, command
    Close #1
    
    'MsgBox "命令已保存到 " & FilePath, vbInformation, "保存成功"
    Shell FilePath, vbHide '执行命令并显示命令行窗口
    End
End Sub

' 读取INI文件中的指定键值
Private Function ReadIniValue(ByVal Section As String, ByVal Key As String, ByVal FilePath As String) As String
    Dim Buffer As String
    Dim BufferSize As Long
    Dim RetVal As Long
    Buffer = String$(255, 0)  ' 初始化缓冲区
    BufferSize = Len(Buffer)
    '调用API函数读取INI文件中的值
    RetVal = GetPrivateProfileString(Section, Key, "", Buffer, BufferSize, FilePath)
    '根据chr(0)的位置来截取字符串
    ReadIniValue = Left$(Buffer, InStr(Buffer, Chr(0)) - 1)
End Function

预ICP备10086-001号 © 翼展网/80C.CC 技术支持/洛阳翼展科技
TEL / 13213610060 QQ / 345794501
Powered by emlog