473,699 Members | 2,461 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

VB2008 changes?

Does anyone know where i can find a decently thorough list of the language
changes in VB2008, such as the new If() function?

All i can seem to find through search engines, most of the articles all talk
about LINQ, with only cursory mention - at best - of any other new features.

Thanks in advance, ...
Arthur Dent.

Nov 27 '07 #1
7 2533
Hi Arthur,

http://weblogs.asp.net/scottgu/archi...-released.aspx

I got this just some minutes ago from Ken, I did not read it yet, but seems
to be pretty well.

Cor

Nov 27 '07 #2
Thanks for the link. It *does* look like one of the better articles, but
still doesnt really cover the new features to the actual _language_ of VB.
"Cor Ligthert[MVP]" <no************ @planet.nlwrote in message
news:C6******** *************** ***********@mic rosoft.com...
Hi Arthur,

http://weblogs.asp.net/scottgu/archi...-released.aspx

I got this just some minutes ago from Ken, I did not read it yet, but
seems to be pretty well.

Cor
Nov 27 '07 #3
"Arthur Dent" <hi************ *********@yahoo .comwrote in message
news:7C******** *************** ***********@mic rosoft.com...
Does anyone know where i can find a decently thorough list of the language
changes in VB2008, such as the new If() function?

All i can seem to find through search engines, most of the articles all
talk about LINQ, with only cursory mention - at best - of any other new
features.

Thanks in advance, ...
Arthur Dent.
I am not able to find any reference to an If() function in VS2008. Did you
mean Iif() function?

The most compeling thing about VS2008 is that it is a major bug fix for
VS2005. I am not experiencing all the hangs I used to get in the previous
version (when working on a large solution). Further to this 2008 loads much
faster, projects load much faster and the IDE is much more stable. Help also
loads much faster.

If you like VS2005 you will love VS2008
Nov 27 '07 #4
Yes, i've been using the Express version until the product actually ships...
for us non-MSDN people. ;)

If() is a new function in 2008... it has two overloads,

If(booleanCondi tion, resultIfTrue, resultIfFalse) this works
basically like Iif() but with lazy evaluation (FINALLY!!)

If(object, defaultValue) this returns the value of object if possible,
otherwise it returns defaultValue. Sort of a VB implementation of Sql
Server's IsNull function or ORACLE's NVL.

Then things like the shortcut for creating a nullable value...
Dim var As Nullable(Intege r) can now be Dim var As Integer?

Those are the little things i'm looking to find out about... some sort of
thorough listing of those kinds of changes.
CheerZ! :)
"Harry" <ha*********@ff apaysmart.com.a uwrote in message
news:uJ******** ******@TK2MSFTN GP06.phx.gbl...
"Arthur Dent" <hi************ *********@yahoo .comwrote in message
news:7C******** *************** ***********@mic rosoft.com...
>Does anyone know where i can find a decently thorough list of the
language changes in VB2008, such as the new If() function?

All i can seem to find through search engines, most of the articles all
talk about LINQ, with only cursory mention - at best - of any other new
features.

Thanks in advance, ...
Arthur Dent.
I am not able to find any reference to an If() function in VS2008. Did you
mean Iif() function?

The most compeling thing about VS2008 is that it is a major bug fix for
VS2005. I am not experiencing all the hangs I used to get in the previous
version (when working on a large solution). Further to this 2008 loads
much faster, projects load much faster and the IDE is much more stable.
Help also loads much faster.

If you like VS2005 you will love VS2008
Nov 27 '07 #5
Here's a link to a developer blog regarding the new If and other
things...

http://blogs.msdn.com/vbteam/archive...da-silver.aspx

On Nov 27, 4:32 pm, "Arthur Dent" <hitchhikersgui deto-n...@yahoo.com>
wrote:
Yes, i've been using the Express version until the product actually ships...
for us non-MSDN people. ;)

If() is a new function in 2008... it has two overloads,

If(booleanCondi tion, resultIfTrue, resultIfFalse) this works
basically like Iif() but with lazy evaluation (FINALLY!!)

If(object, defaultValue) this returns the value of object if possible,
otherwise it returns defaultValue. Sort of a VB implementation of Sql
Server's IsNull function or ORACLE's NVL.

Then things like the shortcut for creating a nullable value...
Dim var As Nullable(Intege r) can now be Dim var As Integer?

Those are the little things i'm looking to find out about... some sort of
thorough listing of those kinds of changes.
CheerZ! :)

"Harry" <harryNoS...@ff apaysmart.com.a uwrote in message

news:uJ******** ******@TK2MSFTN GP06.phx.gbl...
"Arthur Dent" <hitchhikersgui deto-n...@yahoo.comw rote in message
news:7C******** *************** ***********@mic rosoft.com...
Does anyone know where i can find a decently thorough list of the
language changes in VB2008, such as the new If() function?
All i can seem to find through search engines, most of the articles all
talk about LINQ, with only cursory mention - at best - of any other new
features.
Thanks in advance, ...
Arthur Dent.
I am not able to find any reference to an If() function in VS2008. Did you
mean Iif() function?
The most compeling thing about VS2008 is that it is a major bug fix for
VS2005. I am not experiencing all the hangs I used to get in the previous
version (when working on a large solution). Further to this 2008 loads
much faster, projects load much faster and the IDE is much more stable.
Help also loads much faster.
If you like VS2005 you will love VS2008- Hide quoted text -

- Show quoted text -
Nov 27 '07 #6
Great link; thanks for that! :)

"Mark Lincoln" <ml******@earth link.netwrote in message
news:0d******** *************** ***********@j20 g2000hsi.google groups.com...
Here's a link to a developer blog regarding the new If and other
things...

http://blogs.msdn.com/vbteam/archive...da-silver.aspx

On Nov 27, 4:32 pm, "Arthur Dent" <hitchhikersgui deto-n...@yahoo.com>
wrote:
>Yes, i've been using the Express version until the product actually
ships...
for us non-MSDN people. ;)

If() is a new function in 2008... it has two overloads,

If(booleanCondi tion, resultIfTrue, resultIfFalse) this works
basically like Iif() but with lazy evaluation (FINALLY!!)

If(object, defaultValue) this returns the value of object if
possible,
otherwise it returns defaultValue. Sort of a VB implementation of Sql
Server's IsNull function or ORACLE's NVL.

Then things like the shortcut for creating a nullable value...
Dim var As Nullable(Intege r) can now be Dim var As Integer?

Those are the little things i'm looking to find out about... some sort of
thorough listing of those kinds of changes.
CheerZ! :)

"Harry" <harryNoS...@ff apaysmart.com.a uwrote in message

news:uJ******* *******@TK2MSFT NGP06.phx.gbl.. .
"Arthur Dent" <hitchhikersgui deto-n...@yahoo.comw rote in message
news:7C******* *************** ************@mi crosoft.com...
Does anyone know where i can find a decently thorough list of the
language changes in VB2008, such as the new If() function?
>All i can seem to find through search engines, most of the articles
all
talk about LINQ, with only cursory mention - at best - of any other
new
features.
>Thanks in advance, ...
Arthur Dent.
I am not able to find any reference to an If() function in VS2008. Did
you
mean Iif() function?
The most compeling thing about VS2008 is that it is a major bug fix for
VS2005. I am not experiencing all the hangs I used to get in the
previous
version (when working on a large solution). Further to this 2008 loads
much faster, projects load much faster and the IDE is much more stable.
Help also loads much faster.
If you like VS2005 you will love VS2008- Hide quoted text -

- Show quoted text -
Nov 27 '07 #7
"Arthur Dent" <hi************ *********@yahoo .comschrieb:
Does anyone know where i can find a decently thorough list of the language
changes in VB2008, such as the new If() function?

All i can seem to find through search engines, most of the articles all
talk about LINQ, with only cursory mention - at best - of any other new
features.
The Visual Basic Team
<URL:http://blogs.msdn.com/vbteam/>

What's New in Visual Basic
<URL:http://msdn2.microsoft .com/en-us/library/we86c8x2(vs.90) .aspx>

What's New in the Visual Basic Language
<URL:http://msdn2.microsoft .com/en-us/library/y17w47af(VS.90) .aspx>

What's New in the Visual Basic Compiler
<URL:http://msdn2.microsoft .com/en-us/library/x9es5c23(VS.90) .aspx>

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Nov 27 '07 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
3439
by: Arthur Dent | last post by:
I am trying to make a VB2008 Express winforms project, and edit the form. However, when i try to open the form, i get this error: ..NET Framework 2.0 update not found. The win32manifest will not be embedded. It considers it a fatal error, and will not let me edit the form, either in code or design view. I have frameworks 1.1, 2.0, 3.5 installed, and all Windows Updates (sans DreamScene).
6
2676
by: Academia | last post by:
I have a computer at home with a (slow) dialup connection and a computer at school with a fast connection. I want to go there (it is not close) and down load Vb2008 express, burn it into a CD, bring it home and install it on my home computer. Someone told me it can't be done. Is there a way of doing that?
8
3209
by: Galen Somerville | last post by:
My graphics involves a lot of line drawings in a short period of time. I have all the graphics in a separate module. I repeatedly get the pixel data from a USB device, draw the requisite traces, get more data, draw traces, etc. The USB appears to take 82 ms between bursts of data. But the drawing is taking 178 ms !!! It's a real time display, like an oscilloscope, whereby I have to blank the
0
688
by: Galen Somerville | last post by:
On two of my forms the following code causes a warning" Me.components = New System.ComponentModel.Container Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmSweep)) Warning 1 Failed to parse the following code: Me.components = New System.ComponentModel.Container
6
4495
by: Scott Gravenhorst | last post by:
Windows XP SP3 My application is set to open a SaveFile dialog when an exit is requested. When I click the app's close button, the save dialog opens, but when I click to change the folder, the exception occurs pointing to FileSaveDialog1.ShowDialog(). The exception also indicates some problem with system.drawing.dll. The exception text is: "Attempted to read or write protected memory. This is often an
9
1193
by: MichaelH | last post by:
Are there any definite advantages of VB2008 over VB2005? Thank in advance. Michael
4
1787
by: Etienne-Louis Nicolet | last post by:
I am working on an error handler class. Within a property set method of a given class property I'd like to pass the PropertyInfo to a function. Imagine something like: Public Class MyClass .... Public Property MyProperty() as String Get Return _myProperty End Get
10
1185
by: Gilbert Tordeur | last post by:
Bonjour. N'y aurait-il pas depuis la VB8 un moyen d'assigner en une seule instruction l'ensemble des propriétés d'un objet aux propriétés de mêmes noms d'un autre objet, plutôt que d'écrire la liste fastidieuse : O2.P1 = O1.P1 O2.P2 = O1.P2 O3.P2 = O1.P3 etc.
0
1238
by: John Dann | last post by:
Looking to migrate from VB2005 Pro to VB2008. Can anyone suggest/recommend a VB2008 book that highlights the changes from earlier versions of VB.Net (VB2003/2005) rather than describing VB2008 totally from scratch? I suspect that this may be asking too much in that few books will focus exclusively on migrating/upgrading, but there still may be something out there that is written with existing users of VB.Net in mind. I'm obviously looking...
0
8617
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9174
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9035
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
7751
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6534
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5875
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
3057
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2347
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2009
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.