Hello
I am new to k2 and i have a schema wich contains mutiple nodes and fields.
i am creating a plan page and i need to update an xml field of the schema process.
my code as follows:
 Dim conk2 As New K2ROM.Connection
       Dim strCon As String
       strCon = "Â;];Authentication=Windows;Domain=;User=administrator;Password=password"     Â
       conk2.Open("ntxgdsbiztalk", strCon)
       Dim callisp As K2ROM.ProcessInstance
       callisp = conk2.CreateProcessInstance("DSLWorkflowsProcess DSL OrderEscalationsEscalations_CallISP")
callisp.XmlFields(Â Â Â Â Â Â Â Â Â Â Â
conk2.StartProcessInstance(callisp)
        Â
 In the callisp.XmlFields it is asking for the index as integer
How can i update an xml field in a given schema
Thanks a lotÂ