dwerf 2 Posted January 21, 2011 (edited) How can I write this VBScript in AutoIt? set SchemaCache = CreateObject("Msxml2.XMLSchemaCache") SchemaCache.Add "", null I've tried 0, '0', '', 'null', Chr(0) and a not initialized variable instead of null. An error occures: "The requested action with this object has failed." $SchemaCache = ObjCreate("Msxml2.XMLSchemaCache") $SchemaCache.Add("", '') Edited January 21, 2011 by dwerf Share this post Link to post Share on other sites
Zedna 280 Posted January 21, 2011 (edited) Try this $SchemaCache.Add("") Edited January 21, 2011 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search Share this post Link to post Share on other sites
Zedna 280 Posted January 21, 2011 Also look here how to obtain value NOTHING from VB Resources UDF ResourcesEx UDF AutoIt Forum Search Share this post Link to post Share on other sites