background picture of the home page

Think in Code

查询Windows下的dll exe所依赖的文件

查询Windows下的dll/exe所依赖的文件 dumpbin -dependents your-file 如果有Image has the following delay load dependencies,列出的为运行时动态加载的dll。 如果有Image has the following

thumbnail of the cover of the post

程序设置开机自启

程序设置开机自启 Windows // "Key" 是自启名称 // "Value" 程序路径 // 添加注册表 reg add HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run /v "Key" /d "Val

thumbnail of the cover of the post

MacOS 获取系统语言

MacOS 获取系统语言 std::string GetLocaleLanguage() { // defaults read .GlobalPreferences AppleLanguages | tr -d ["()\\""][:space:] std::string lpath =

thumbnail of the cover of the post

NSIS 单实例运行安装包

NSIS 单实例运行安装包 Function .onInit ;uac提权 !insertmacro UAC_RunElevated # 禁止多个安装程序实例 Begin System::Call 'kernel32::CreateMutexA(i 0, i 0, t "Raysync C

thumbnail of the cover of the post

去除滚动条两边箭头

效果: 这里是水平的,垂直滚动条改成 vertical,然后将 height改成width QScrollBar:horizontal { background: white; height: 13px; margin: 0; /* 去掉间隔 */ } QScrollBar

thumbnail of the cover of the post