vb.net - VisualBasic CreateObject() -


i'm having problem createobject. keeps telling me it's undeclared element. there specific reference need add?

the reference excel etc in it, , don't more info msdn.

public function bbantobic(byval bban string) string         dim xd object         xd = createobject("msxml2.domdocument.4.0")         xd.load("http://www.ibanbic.be/ibanbic.asmx/bbantobic?value=" & bban)         while xd.readystate <> 4             doevents()         loop         bbantobic = xd.text     end function 

"msxml2.domdocument.4.0" not installed in system. it 2001. shoud use "msxml2.domdocument.6.0". see using right version of msxml in internet explorer


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -