VBScript 输出中的对齐实现方法_vbs教程-查字典教程网
VBScript 输出中的对齐实现方法
VBScript 输出中的对齐实现方法
发布时间:2016-12-28 来源:查字典编辑
摘要:运行效果:代码(fOutput.vbs):复制代码代码如下:strComputer="."SetobjWMIService=GetObjec...

运行效果:

代码(fOutput.vbs):

复制代码 代码如下:

strComputer = "."

Set objWMIService = GetObject("winmgmts:" & strComputer & "rootCIMV2")

Set colItems = objWMIService.ExecQuery( _

"SELECT * FROM Win32_NetworkAdapterConfiguration",,48)

For Each objItem in colItems

Wscript.Echo objItem.Caption & fOutput(objItem.Caption) & "textinfo"

Next

Function fOutput(strName)

strLen = Len(strName)

Select Case True

Case strLen < 8

fOutput = chr(9) & chr(9) & chr(9) & chr(9) & chr(9)

Case strLen < 16

fOutput = chr(9) & chr(9) & chr(9) & chr(9)

Case strLen < 24

fOutput = chr(9) & chr(9) & chr(9)

Case strLen < 32

fOutput = chr(9) & chr(9)

Case strLen < 40

fOutput = chr(9)

Case Else

'超过40的只取前32位

For K = 1 To strLen - 32

fOutput = fOutput & chr(8)

Next

fOutput = fOutput & " ..." & chr(9)

End Select

End Function

原文:https://www.enun.net/?p=2381

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新vbs学习
    热门vbs学习
    脚本专栏子分类