xulihang Active Member Licensed User Longtime User Aug 13, 2020 #1 Hi there, I came across a "指定的参数已超出有效值的范围。Text value cannot be null or empty" error reported by the IDE. I found it was because I included xml2map which has a type named xmlelement and I also created a class named xmlelement. Is there any mechanism to avoid this namespace problem? Thanks.
Hi there, I came across a "指定的参数已超出有效值的范围。Text value cannot be null or empty" error reported by the IDE. I found it was because I included xml2map which has a type named xmlelement and I also created a class named xmlelement. Is there any mechanism to avoid this namespace problem? Thanks.
DonManfred Expert Licensed User Longtime User Aug 13, 2020 #2 Not that i know of. rename your class to clsxmlelement for ex. Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Aug 13, 2020 #3 Xml2Map is a b4xlib. Practically it is source code that is added to your project exactly like any other source. You can either modify your class name or modify the code inside Xml2Map (it is a zip file). Upvote 0
Xml2Map is a b4xlib. Practically it is source code that is added to your project exactly like any other source. You can either modify your class name or modify the code inside Xml2Map (it is a zip file).
xulihang Active Member Licensed User Longtime User Aug 13, 2020 #4 Thanks. I think it will be great if I can specify which class to use. Upvote 0