VB/VB.Net

Splitting a class across files in VB.NET

With the complexity of today's applications, developers often deal with classes that are very long. One way to make the classes more manageable is to split them across multiple files. Read more »

Create shortcut menus for forms in VB.NET using ContextMenuStrip

This VB.Net tip will show you how to implement shortcut menus for a form using the ContextMenuStrip control. Read more »

Tags: vb.net

Sharing the event logic between controls in VB.NET

Whenever you write the code logic that may be used for more than one control, it makes sense to try to save time by creating only one procedure that will handle the event and perform that logic. Read more »

Create a fading form in VB.NET

While core functionality and useability of the application is always one of the most important aspects, various visual effects may improve the way users feel about a particular application. Read more »

Keep an eye on file system changes with VB.NET's FileSystemWatcher

FileSystemWatcher is a component in Visual Studio .NET that allows you to respond to file system changes. It's very handy whenever you need to perform a certain action in response to a file being updated and in numerous other situations. Read more »

Learn how to use the DateTimePicker control in VB.NET

Visual Studio .NET's DateTimePicker control offers a convenient way for users to make a date/time selection. We demonstrate an example which uses the control. Read more »

Performing mathematical functions in VB.NET

To perform mathematical operations in VB.NET you can utilise the System.Math class. In this tip, we will look at a simple way of working with math-related functions in VB.NET. Read more »

Putting VB.NET's MonthCalendar control to use

Visual Studio .NET provides the MonthCalendar control, which allows you to select dates or a range of dates. The control is a convenient way to allow users to make a date selection. Read more »

Create a temp file with VB.NET

Temp files are generally used for temporary storage and data manipulation. This is often necessary for storing user data, user preferences, session information, application cache, and many other types of information. Read more »

Tags: .net, files, temp

Create a date/time value from date parts in VB.NET

When you need to put together a full date/time value from a combination of its specific parts, you can overload the Date object's constructors and assign the necessary date/time value parts to it. This tip shows how to perform the functionality. Read more »

Log in


Sign up | Forgot your password?

What's on?