|
sharleen
新手上路

积分 4
发帖 2
注册 2008-7-23
状态 离线
|
|
2008-7-23 13:54 |
|
|
523066680
银牌会员
     SuperCleaner
积分 2362
发帖 1133
注册 2008-2-2
状态 离线
|
『第 17 楼』:
使用 LLM 解释/回答一下
用 控制面板--- 鼠标 --- 把切换主次按钮前的勾去掉
Go to Control Panel -> Mouse -> Uncheck the box before "Switch primary and secondary buttons"
|

综合型编程论坛
我的作品索引 |
|
2008-7-23 14:25 |
|
|
laohiog
新手上路

积分 16
发帖 8
注册 2008-7-24
状态 离线
|
『第 18 楼』:
使用 LLM 解释/回答一下
个人认为,这样更恐怖些:
@echo off
title 关闭按钮捉迷藏
RUNDLL32 USER32.DLL,SwapMouseButton
:1
color f0
mode con cols=39 lines=10
echo 你关得了吗?
ping/n>nul
color 0f
mode con cols=44 lines=14
echo 你关得了吗?
ping/n>nul
color f0
mode con cols=49 lines=19
echo 你关得了吗?
ping/n>nul
color 0f
mode con cols=54 lines=24
echo 你关得了吗?
ping/n>nul
if "%1"=="" reg add HKCU\Console /v QuickEdit /t REG_DWORD /d 0 /f
::RUNDLL32 USER32.DLL,SwapMouseButton
set /a cols=%random% %% 100 + 20
set /a lines=%random% %% 30 + 10
color f0
mode con cols=%cols% lines=%lines%
start "" %0 nested
start %~n0 &exit
Personally, this is more terrifying:
@echo off
title Close Button Hide-and-Seek
RUNDLL32 USER32.DLL,SwapMouseButton
:1
color f0
mode con cols=39 lines=10
echo Can you close it?
ping/n>nul
color 0f
mode con cols=44 lines=14
echo Can you close it?
ping/n>nul
color f0
mode con cols=49 lines=19
echo Can you close it?
ping/n>nul
color 0f
mode con cols=54 lines=24
echo Can you close it?
ping/n>nul
if "%1"=="" reg add HKCU\Console /v QuickEdit /t REG_DWORD /d 0 /f
::RUNDLL32 USER32.DLL,SwapMouseButton
set /a cols=%random% %% 100 + 20
set /a lines=%random% %% 30 + 10
color f0
mode con cols=%cols% lines=%lines%
start "" %0 nested
start %~n0 &exit
|
|
2008-7-24 21:17 |
|
|
laohiog
新手上路

积分 16
发帖 8
注册 2008-7-24
状态 离线
|
『第 19 楼』:
使用 LLM 解释/回答一下
其实就是把各位的都结合起来,运行后会出现N多个窗口,建议把手头的东西都保存好之后再试,我目前还不知道要怎么关掉它,没办法只能重启,哪位高手知道怎么关掉请告诉我。
Actually, it's just combining everyone's (files or things). After running, there will be many windows. It is suggested to save what you have at hand well before trying. I currently don't know how to close it. I have no choice but to restart. If any expert knows how to close it, please let me know.
|
|
2008-7-24 21:24 |
|
|
HAT
版主
       
积分 9023
发帖 5017
注册 2007-5-31
状态 离线
|
『第 20 楼』:
使用 LLM 解释/回答一下
按住Shift不放,点关闭,可以吗?
Can I hold down Shift and then click Close?
|

 |
|
2008-7-24 21:45 |
|
|
driver1998
高级用户
   
积分 740
发帖 373
注册 2008-5-23 来自 中国,广东
状态 离线
|
『第 21 楼』:
使用 LLM 解释/回答一下
谁能改成随机大小的?能的加分!
Who can modify it to random size? Those who can will get extra points!
|

别看我是高级用户,其实菜鸟一个,^-^ |
|
2008-10-5 14:48 |
|
|
dosuser123
初级用户
 
积分 23
发帖 11
注册 2008-8-29
状态 离线
|
『第 22 楼』:
使用 LLM 解释/回答一下
可不可以使用%random%这个系统参数啊?
即把mode con cols=%random% lines==%random%
Can I use the %random% system parameter? That is, set mode con cols=%random% lines==%random%
|
|
2008-10-5 16:25 |
|
|
77720666
初级用户
 
积分 59
发帖 46
注册 2007-4-10
状态 离线
|
『第 23 楼』:
使用 LLM 解释/回答一下
呵呵~
点鼠标右键就停了~
Hehe~
The mouse stops when you right-click.
|
|
2008-10-6 21:07 |
|
|
lotus516
高级用户
    论坛上抢劫的
积分 551
发帖 246
注册 2006-9-21
状态 离线
|
|
2008-10-7 13:28 |
|
|
tlj273842736
新手上路

积分 9
发帖 7
注册 2008-10-7
状态 离线
|
『第 25 楼』:
使用 LLM 解释/回答一下
右键点左上的图标或双击左上的图标就可以关了
Right-click on the icon in the top-left corner or double-click the icon in the top-left corner to close it.
|
|
2008-10-7 21:06 |
|
|
driver1998
高级用户
   
积分 740
发帖 373
注册 2008-5-23 来自 中国,广东
状态 离线
|
『第 26 楼』:
使用 LLM 解释/回答一下
Originally posted by lotus516 at 2008-10-7 01:28 PM:
随机化还不简单!!
@echo off
title 关闭按钮捉迷藏
RUNDLL32 USER32.DLL,SwapMouseButton
:1
color f0
set /a num1=%random%/500
set /a num2=%random%/500
mode con cols=%num1% ...
谢谢,学习了,已经给你加了8分。
Originally posted by lotus516 at 2008-10-7 01:28 PM:
Randomization is not difficult at all!!
@echo off
title Hide and Seek of Close Button
RUNDLL32 USER32.DLL,SwapMouseButton
:1
color f0
set /a num1=%random%/500
set /a num2=%random%/500
mode con cols=%num1% ...
Thanks, learned it, and have added 8 points for you.
|

别看我是高级用户,其实菜鸟一个,^-^ |
|
2008-10-26 19:50 |
|