R
Richard
I am trying to call a web service with a text argument from code.
I need to set this text dyanmically at runtime. like this:
Dim queryValue1 As IXMLDOMNode
queryValue1 =
wsDOM.selectSingleNode("//dfs:myFields/dfs:queryFields/tns:MarkLogicQuery/tns:txtXquery")
Dim qst as string
qst = "<result>this is a test</result>"
queryValue1.text = qst
this is where I get the error:
Infopath cannot update the data because the form is currently read-only
Is this because the fields on the form are all read only ?? ? what is going
on ???
I need to set this text dyanmically at runtime. like this:
Dim queryValue1 As IXMLDOMNode
queryValue1 =
wsDOM.selectSingleNode("//dfs:myFields/dfs:queryFields/tns:MarkLogicQuery/tns:txtXquery")
Dim qst as string
qst = "<result>this is a test</result>"
queryValue1.text = qst
this is where I get the error:
Infopath cannot update the data because the form is currently read-only
Is this because the fields on the form are all read only ?? ? what is going
on ???