sol12-24.vbs
来自「Apress - Managing Enterprise Systems Wit」· VBS 代码 · 共 11 行
VBS
11 行
'get the Fields collection from a message
Set objFields = objMessage.Fields
'continue if error occurs - certain field types cannot be outputted and will
'generate an error if attempted to display
On Error Resume Next
'loop through all of the fields in the objFields collection
For Each objField In objFields
'display the Field value and ID.
WScript.Echo objField.Values & " " & objField.ID
Next
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?