最新发布第138页
排序
XMind v2020 10.3.1 Linux64 特别版
XMind 是一款专业的全球领先的商业思维导图软件,在国内使用广泛,拥有强大的功能、包括思维管理、商务演示、与办公软件协同工作等功能。它采用全球先进的Eclipse RCP软件架构,是集思维导图与...
NSIS用法注释
;this is a test comment #this is a test comment too, /*this is a test comment too*/ ;MessageBox MB_OK 'hi test!' ;MessageBox MB_OK '$\'A quote from a wise man$\' said the wise man'...
使用SectionSetText隐藏不想显示的区段
Name '隐藏区段' Caption '$(^Name)' OutFile '隐藏区段.exe' XPStyle on !include 'MUI2.nsh' RequestExecutionLevel admin !insertmacro MUI_PAGE_COMPONENTS !insertmacro MUI_PAGE_INSTFILE...
利用ButtonEvent插件移动无标题窗口
nsis利用ButtonEvent插件移动无标题窗口,nsis,无标题窗口,移动窗口 众所周知,普通win窗口是带有标题栏的,标题栏的主要功用之一,就是可以方便的拖动窗体,但为了各式各样的目的,有时候我们不得不...
给nsis窗口添加立体阴影
利用SetClassLong函数给nsis窗口添加了阴影,看起来很酷^_^ System::Call `user32::SetClassLong(i$HWNDPARENT,i${GCL_STYLE},i${CS_DROPSHADOW})` SetClassLong Replaces the specified 32-bit ...
如何隐藏桌面
!include nsDialogs.nsh XPStyle on ChangeUI all '${NSISDIR}ContribUIssdbarker_tiny.exe' Name 隐藏桌面 OutFile 隐藏桌面.exe Page custom HideDesktop Function HideDesktop nsDialogs::Cr...
离开自定义页面保存设置
!include LogicLib.nsh !include nsdialogs.nsh XPStyle on Page components Page custom nsdialogspage Page directory OutFile 'test.exe' Name 'test' Section 'test' SectionEnd Var Initia...
检测并统计字符串中某个字符个数
!include 'LogicLib.nsh' OutFile '检查找字符串中c出现的次数.exe' Name 'test' Section 'test' StrCpy $0 'cabcdccccc' StrLen $1 $0 StrCpy $2 '' loop: IntOp $1 $1 - 1 StrCmp $1 '-1' end...
使用SHFileOperation函数移动文件夹
HFileOperation是一种外壳函数,用它可以实现各种文件操作,如文件的拷贝、删除、移动等,该函数使用起来非常简单,它只有一个指向SHFILEOPSTRUCT结构的参数。使用SHFileOperation()函数时只要填写...
去除字串中的汉字
!include 'LogicLib.nsh' XPStyle on !include 'WordFunc.nsh' #去除字串中的汉字 #本例仅是个思路,测试环境和给出的条件有限,如有异常,有进一步修改的余地。 OutFile 'NSIStest.exe' Name 'tes...















摩罗加措
23分钟前0
I感谢楼主分享!!