-Collapse +Expand
Message Boards
Tech Search:

Advanced
More Board Options
MOREINFO...
My Moderator Settings
MODERATOROPTONS

BOARDSTATS
Posts: 16591
Threads: 5263
Topics: 95
Boards: 34
Groups: 34
 

Prestwood eMagazine

January Edition
Subscribe now! It's Free!
Enter your email:

   ► MB Lobby ►   Print This     

Vb net Posts

"Vb net" Knowledge Base Posts

More...
  KB Article    

Mike Prestwood
1. A 10 Minute VB.Net Console Application Quick Start

This will show how to make a "hello world" console application in Visual Studio 2008 using VB.Net.

Posted to KB Topic: Tool Basics
18 years ago, and updated 15 years ago
(6 Comments , last by Mark.B5 )

Article
Nothing New Since Your Last Visit
44971
Hits

VB.Net Language

Wes Peterson
2. Telerik Extensions for ASP.NET MVC - Free http://www.telerik.com/products/aspnet-mvc.aspx?utm_source=CodeProjectNewsletter&utm_medium=banner&utm_campaign=MVC_Jan15
Posted to KB Topic: Tool Basics
16 years ago

Link
Nothing New Since Your Last Visit
10700
Hits

VB.Net Language

Mike Prestwood
3. VB.Net Constants (Const kPI Double = 3.1459)

In VB.Net, you define constants with the Const keyword.

All constants are part of a class (no global constants) but you can make a constant public and have access to it using ClassName.ConstantName so long as you have added the class to the project. This works even without creating the class as if the public constants were static, but you cannot use the Shared keyword.

Constants must be of an integral type (sbyte, byte, short, ushort, int, uint, long, ulong, char, float, double, decimal, bool, or string), an enumeration, or a reference to null.

Posted to KB Topic: Tool Basics
18 years ago, and updated 17 years ago

Code
Nothing New Since Your Last Visit  
15427
Hits

VB.Net Language

Mike Prestwood
4. VB.Net Overloading (Overloads, or implicit)

VB.Net supports both method and operator overloading.

For method overloading, you either use implicit overloading (no special syntax like C#) or use the Overloads keyword. If you use the Overloads keyword, all overloaded methods with the same name in the same class must include the Overloads keyword.

Posted to KB Topic: Language Basics
18 years ago, and updated 17 years ago

Code
Nothing New Since Your Last Visit  
15619
Hits

VB.Net Language

Mike Prestwood
5. VB.Net Member Field

In VB.Net you can set the visibility of a member field to any visibility: private, protected, public, friend or protected friend.

You can intialize a member field with a default when declared. If you set the member field value in your constructor, it will override the default value.

Finally, you can use the Shared modifier (no instance required) and ReadOnly modifier (similar to a constant).

Posted to KB Topic: OOP
18 years ago, and updated 17 years ago

Code

Article
Nothing New Since Your Last Visit
17293
Hits

VB.Net Language
More...
 
Go ahead!   Use Us! Call: 916-726-5675  Or visit our new sales site: 
www.prestwood.com


©1995-2026 Prestwood IT Solutions.   [Security & Privacy]