Connecting Tech Pros Worldwide Forums | Help | Site Map

Visual Studio 2003 - Advice

Ed Crowley
Guest
 
Posts: n/a
#1: Nov 20 '05
I'm currently installing VS2003. Does anyone have any tips for converting
existing VB.NET 2002 projects to 2003? Any gotchas to watch for?

Thanks.





CJ Taylor
Guest
 
Posts: n/a
#2: Nov 20 '05

re: Visual Studio 2003 - Advice


Class initializers will throw you off a little.

VS2002:
Dim myClass as new MyClass()

VS2003:
Dim myClass as new MyClass

note the missing (), probably a dumb thing to be thrown off by... but it
messed me up when the damn things kept going away.

-CJ
"Ed Crowley" <curspice@pacbell.net> wrote in message
news:u%230OCZhdDHA.3232@TK2MSFTNGP10.phx.gbl...[color=blue]
> I'm currently installing VS2003. Does anyone have any tips for converting
> existing VB.NET 2002 projects to 2003? Any gotchas to watch for?
>
> Thanks.
>
>[/color]


William Ryan
Guest
 
Posts: n/a
#3: Nov 20 '05

re: Visual Studio 2003 - Advice


http://www.planet-source-code.com/vb...1437&lngWId=10

This book is pretty good too....

http://www.amazon.com/exec/obidos/tg...09720?v=glance
"Ed Crowley" <curspice@pacbell.net> wrote in message
news:u%230OCZhdDHA.3232@TK2MSFTNGP10.phx.gbl...[color=blue]
> I'm currently installing VS2003. Does anyone have any tips for converting
> existing VB.NET 2002 projects to 2003? Any gotchas to watch for?
>
> Thanks.
>
>[/color]


Ed Crowley
Guest
 
Posts: n/a
#4: Nov 20 '05

re: Visual Studio 2003 - Advice


Eh? These links are all about Crystal Reports!

"William Ryan" <dotnetguru@comcast.nospam.net> wrote in message
news:uyiYP0hdDHA.1044@TK2MSFTNGP10.phx.gbl...[color=blue]
>[/color]
http://www.planet-source-code.com/vb...1437&lngWId=10[color=blue]
>
> This book is pretty good too....
>
>[/color]
http://www.amazon.com/exec/obidos/tg...09720?v=glance[color=blue]
> "Ed Crowley" <curspice@pacbell.net> wrote in message
> news:u%230OCZhdDHA.3232@TK2MSFTNGP10.phx.gbl...[color=green]
> > I'm currently installing VS2003. Does anyone have any tips for[/color][/color]
converting[color=blue][color=green]
> > existing VB.NET 2002 projects to 2003? Any gotchas to watch for?
> >
> > Thanks.
> >
> >[/color]
>
>[/color]


Tom Spink
Guest
 
Posts: n/a
#5: Nov 20 '05

re: Visual Studio 2003 - Advice


It does make sense now though... so as not to confuse it with new-style
array declarations.

--
HTH,
-- Tom Spink, Über Geek

Please respond to the newsgroup,
so all can benefit

"Maybe it's a game called 'Punish the User'"


"CJ Taylor" <nospam@blowgoats.com> wrote in message
news:eoeiLmhdDHA.3128@TK2MSFTNGP09.phx.gbl...[color=blue]
> Class initializers will throw you off a little.
>
> VS2002:
> Dim myClass as new MyClass()
>
> VS2003:
> Dim myClass as new MyClass
>
> note the missing (), probably a dumb thing to be thrown off by... but it
> messed me up when the damn things kept going away.
>
> -CJ
> "Ed Crowley" <curspice@pacbell.net> wrote in message
> news:u%230OCZhdDHA.3232@TK2MSFTNGP10.phx.gbl...[color=green]
> > I'm currently installing VS2003. Does anyone have any tips for[/color][/color]
converting[color=blue][color=green]
> > existing VB.NET 2002 projects to 2003? Any gotchas to watch for?
> >
> > Thanks.
> >
> >[/color]
>
>[/color]


Closed Thread