0
我需要將對象類型值傳遞給從文本文件(字符串fromat)中讀取的過程。將字符串類型值轉換爲對象類型VBS
'param node- Object type
'param txtvalue - String
Function setTexttoElement(nodename, txtvalue)
nodename.Text = txtvalue
End Function
方法是細緻的工作通過以下值
setTexttoElement myElement, abc
時,但讀取文件時,它需要字符串格式。所以,我需要先值轉換爲對象
「myElement」, 「ABC」
如何解決這個問題?
什麼樣的對象期望'nodename'參數?我們在談論XML/HTML嗎? – AutomatedChaos
yes .. Set myElement = CreateObject(「Microsoft.XMLDOM」) –