手机
当前位置:查字典教程网 >脚本专栏 >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实现定时运行web文件的方法

用vbscript实现将脚本的输出复制到剪贴板

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

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

用vbs实现返回 IP 配置数据

vbscript include的办法实现代码第1/2页

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

用vbs实现的输入助手附使用方法

纯vbs实现zip压缩与unzip解压缩函数代码

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

精品推荐
分类导航