
Upgrading to VS.Net 2003 from VS.Net 2002
Exhibit 1, just the first of many pulled from a minscule WebService...
Dim objXTR As System.Xml.XmlTextReader
Dim objRequest As RequestSchema
Dim objParm As RequestSchema.ParametersRow
Dim objMobject As RequestSchema.MObjectCallRow
Dim szXML As String
Try
If XMLRequest = vbNullString Then XMLRequest = XMLRequestTemplateTest()
'Testing Code
'Read The Incoming XML into a DataSet
objXTR = New System.Xml.XmlTextReader(XMLRequest,
System.Xml.XmlNodeType.Document, Nothing)
objRequest = New RequestSchema()
objRequest.ReadXml(objXTR) 'Compiler chokes here in 1.1, apparantly
objXTR has to be cast explicitly as an XmlReader, code compile and runs just
fine under 1.0. I have about 25 of these little tweaks in a little tine
project.
Quote:
> Lot's of little things were changed most for the better.
> You can go here to see what some of the most significant changes were.
> http://www.*-*-*.com/
> And here is a link to a doc you can look at offline with a detailed list
of
> all of the changes to methods, classes, properties, etc between 1.0 and
1.1.
> http://www.*-*-*.com/
> And yes there are things that will break when moving an app from 1.0 to
1.1.
> Not many but we've seen them.
> Sean Campbell
> 3 Leaf
> Early Adopter Radio Web Log
> http://www.*-*-*.com/
> > They appear to have made a bunch of changes to the Framework and how it
> > behaves. How am I supposed to move a project I just upgraded to 2002 on
to
> > 2003 so I can use an IDE that is not a pig and then move it to 2004 when
> > they will supposedly release an environment as good as VB6 - it willhwve
> > edit and continue working.
> > Damn this is a {*filter*}!!! I expected enhancements to the framework, but
not
> > out and out changes to it's behavior!!!
> > > No there is no supported way to point VS.NET 2003 at the 1.0 Framework
> for
> > > building applications.
> > > Sean Campbell
> > > 3 Leaf
> > > Early and Adopter Web Log
> > > http://www.*-*-*.com/
> > > > I upgraded my dev machine to VB.Net 2003 from VB.Net 2002. The
project
> I
> > > > have worked on developed a lot of errors apparently related to the
> > > > difference in the framework. Is there a way to specify that my
project
> > > uses
> > > > to 1.0 framework and not the 1.1 framework ?