The read-xmlschema attribute on dataset widget has invalid arguments

Mkontwg

Member
Hi Team

Can any person help me with above error, on my code I have these arguments on widget inside the form. My aim want to export excel file.

CREATE DATASET dynDs.
//dynDs:READ-XMLSCHEMA("FILE", "C:\Users\gmkotwana\Documents\Labs-Excercises\testData.xsd",TRUE).
dynDs:READ-XML("FILE", "C:\Users\gmkotwana\Documents\Labs-Excercises\testData.xml",?,?,?).
automate:Handle = dynDs.
ultraGrid1:DataSource = automate.

What am I missing as it also complain about the file not found? Need simple clarity here, thanks.
 

Cecil

19+ years progress programming and still learning.
try
dynDs:READ-XMLSCHEMA("FILE", "C:\Users\gmkotwana\Documents\Labs-Excercises\testData.xsd",FALSE).

also, you have some forward slashes in your example.
 
Top