|
-
Dec 22nd, 2003, 08:50 AM
#1
Thread Starter
Frenzied Member
vb2002 vs. vb2003
I know there are a lot of major differences between vb.net and earlier versions but what are the key differences between vb 2003 and vb 2002? And, is there a vb 2001 or 2000?
-
Dec 22nd, 2003, 11:26 AM
#2
vb2002 vs. 2003? well the language itself hasn't really changed. The only thing new in vb.net 2003 that I know of is the ability to define a variable in For Next blocks (which looks pretty stupid )
For i As Integer = 0 to infinitie
Console.WriteLine ("nevermind")
Next
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Dec 22nd, 2003, 01:08 PM
#3
Sleep mode
Plus fixing some bugs were reported on this forum .
-
Dec 22nd, 2003, 09:13 PM
#4
PowerPoster
Originally posted by MrPolite
vb2002 vs. 2003? well the language itself hasn't really changed. The only thing new in vb.net 2003 that I know of is the ability to define a variable in For Next blocks (which looks pretty stupid )
For i As Integer = 0 to infinitie
Console.WriteLine ("nevermind")
Next
But in C#, it looks a lot cooler....lol.
Code:
for(int i = 0; i < 10; i++)
{
Console.WriteLine(i.ToString());
}
The true benefit to it though is that you don't have to add clutter just to declare a counter variable. Plus, you are not tempted to using the variable in other parts of the code after the loop is complete. (the whole bad coding thing...)
-
Dec 22nd, 2003, 11:25 PM
#5
Thread Starter
Frenzied Member
so, a book NOT written explicitly for 2003 could be used to learn the language? I thought the languages were very different
-
Dec 22nd, 2003, 11:53 PM
#6
Originally posted by thephantom
so, a book NOT written explicitly for 2003 could be used to learn the language? I thought the languages were very different
yeah you can learn the laugage.. one of the big things in the 1.1 framework is the compact framework that lets you write apps for palm and handheld devices...
But I mean you can learn the basics from any book shouldn't be a problem
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Dec 23rd, 2003, 03:28 AM
#7
Fanatic Member
cannot open the solution file,
I cannot open the solution file, I met the following message:
Selected file is not a valid Visual Studio solution file
am I missing something?
please advise .. thanks a lot in advance
Winanjaya
-
Dec 23rd, 2003, 07:41 AM
#8
Sleep mode
Are you trying to open VS.NET 2003 Solution with VS.NET 2002 ? I think you'll get that message . To solve it , get it converted back to 2002 version with the tool in the link below my sig.
-
Dec 23rd, 2003, 09:29 AM
#9
Hyperactive Member
Can 2003 run on NT?
Hi all,
I thought I remember reading that 2002 could run on NT 4.
Can 2003 do the same thing?
Thanks,
JB
JazzBass
In the .NET era
Trying to remember VB6
Progress: 
XP Professional @ Home
and @ the Office
-
Dec 23rd, 2003, 09:50 AM
#10
Sleep mode
VS.NET development tools require (NT4 , 2000 , XP ...later OS) whether 2002 or 2003
-
Dec 23rd, 2003, 09:55 AM
#11
Hyperactive Member
Pirate
Thanks,
I was just wondering because when comparing the requirements between the two, 2002 mentioned NT by name, whereas 2003 does not.
I really didn't think there was much changed that it could not be installed on NT.
Thanks again,
JB
JazzBass
In the .NET era
Trying to remember VB6
Progress: 
XP Professional @ Home
and @ the Office
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|