As soon as I open a .cls file in Visual Studio 2012 many parts of the code are automatically changed.
For example:
Set objHTTP = CreateObject("MSXML2.XMLHTTP")
becomes
objHTTP = CreateObject("MSXML2.XMLHTTP")
And
objHTTP.open "POST", strURL, False
becomes
objHTTP.open("POST", strURL, False)
When I go to build these changes break the build, and I only noticed the changes when viewing the current version of code with the previous. I'm not an expert with VB6 and these changes weren't obvious!