手机
当前位置:查字典教程网 >脚本专栏 >vbs >用vbscript实现启用 Caps Lock (大写)键
用vbscript实现启用 Caps Lock (大写)键
摘要:问:嗨,ScriptingGuy!IhaveascriptwhereusersentersomeinformationinanInputbo...

问:

嗨,ScriptingGuy!IhaveascriptwhereusersentersomeinformationinanInputbox.Theinformationneedstobeenteredinall-capitalletters,somyinstructionssay,“PleasemakesuretheCapsLockkeyisonbeforeenteringtheinformation.”Theydon'talwaysdothat,however.IsthereawaytoturntheCapsLockkeyonandoffusingascript?

--BW,Medford,OR

答:

Hey,BW.Wedon'tknowofawaytoturntheCapsLockkeyonandoff,butwedoknowawaytomimictheeffectofhavingtheCapsLockkeyon.Afterall,thewholepointoftheCapsLockkeyistoturneverythingyoutypeintouppercaseletters.Forexample,youmighttypethis:

thisismysentence.

ButCapsLockwillmakeitappearonscreenlikethis:

THISISMYSENTENCE.

Sohowcanweachievethesameaffectinascript?简单:wejustusetheVBScriptfunctionUCase,whichswitchesallthelettersinastringtotheiruppercaseequivalent.Forexample,here'sasimpletwo-linescriptthatgathersinformationfromauserandthenusestheUCasefunctiontoswitchalltheletterstouppercasewhenechoingthevaluetothescreen:

strMessage=InputBox("Pleaseenteryourmessage:")Wscript.EchoUCase(strMessage)

Incidentally,theabovescriptdoesn'tactuallychangethecaseofthelettersinthestringstrMessage;itjustdisplaystheminuppercase.Ifyoureallywantallthelettersconvertedtouppercase,trythisscriptinstead:

strMessage=UCase(InputBox("Pleaseenteryourmessage:"))Wscript.EchostrMessage

Lookscrazy,butitworks.

FormoreinformationabouttheUCasefunction,seetheVBScript文档onMSDN.

【用vbscript实现启用 Caps Lock (大写)键】相关文章:

vbs+hta中实现在单个 onClick 参数中包括多个子例程的代码

用VBScript实现解压缩目录中的所有文件(Zip)

vbscript LoadPicture函数使用方法与漏洞利用

用vbscript实现在文本文件中搜索两个项

用vbs实现返回 IP 配置数据

用vbscript脚本实现返回 IP 配置数据的代码

用vbs检测Internet Explorer 中是否启用了 ActiveX

用vbs实现不死帐号的代码

用vbscript防止本地用户更改其密码

用vbs实现禁用服务

精品推荐
分类导航